Fix for schedule widget weekdays going out of order

This commit is contained in:
drigato 2015-07-06 10:47:04 -04:00
parent f86c50a834
commit ec0fbd2d61
1 changed files with 5 additions and 1 deletions

View File

@ -59,7 +59,11 @@
});
}
});
$scope.weekDays = $window.schedule_data["weekDays"];
// Convert the object into an array to maintain the same order when we
// iterate over each weekday
$scope.weekDays = $.map($window.schedule_data["weekDays"], function(value, index) {
return [value];
});
$scope.isEmpty = function(obj) {
return obj.length == 0;