1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00

fix bug cant navigate to yestoday in agendaDay view

This commit is contained in:
Peng DU 2016-06-29 17:51:26 +02:00
parent 49ee5011c1
commit 2b08cc8594

View File

@ -52,7 +52,7 @@ Application.Controllers.controller "CalendarController", ["$scope", "$state", "$
# set defaultView, because when we change slotEventOverlap
# ui-calendar will trigger rerender calendar
$scope.calendarConfig.defaultView = view.type
today = moment().startOf('day')
today = moment().utc().startOf('day')
if today > view.start and today <= view.end and today != view.start
$scope.calendarConfig.defaultDate = today
else