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

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