1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-19 13:54:25 +01:00

removed unneeded returns

This commit is contained in:
Sylvain 2020-03-02 16:20:50 +01:00
parent c5923638f4
commit 4ad8a836f9

View File

@ -686,17 +686,17 @@ Application.Controllers.controller('CreateEventModalController', ['$scope', '$ui
}
}
// update availability object
return $scope.availability.start_at = $scope.start;
$scope.availability.start_at = $scope.start;
});
// Maintain consistency between the end time and the date object in the availability object
return $scope.$watch('end', function (newValue, oldValue, scope) {
$scope.$watch('end', function (newValue, oldValue, scope) {
// we prevent the admin from setting the end of the availability before its beginning
if (moment($scope.start).add(Fablab.slotDuration, 'minutes').isAfter(newValue)) {
$scope.end = oldValue;
}
// update availability object
return $scope.availability.end_at = $scope.end;
$scope.availability.end_at = $scope.end;
});
};