task-stepper #1

Merged
chrosey merged 7 commits from task-stepper into master 2021-03-12 23:17:46 +01:00
Showing only changes of commit a26a3dd5f6 - Show all commits

View File

@ -311,4 +311,7 @@ Shift.thaw = function (jsonShift) {
shift.id = jsonShift.id;
shift.Dauer = moment.duration(jsonShift._duration);
return shift;
};
};
Shift.prototype.updateBeginn = function(hour) {
this._begin = this._begin.add('hours', hour);
}