Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $scope.navigatorConfig = {
- selectMode: "day",
- showMonths: 10,
- orientation: "Horizontal",
- // cssClassPrefix: "navigator_8", https://doc.daypilot.org/navigator/css/
- onTimeRangeSelected: function(args) {
- if(typeof $scope.selectedDate == 'undefined' || $scope.selectedDate.getMonth != args.start.getMonth()){
- $scope.selectedDate = args.start;
- loadEvents($scope.selectedDate);
- }
- else{
- loadTimeline(args.start);
- }
- }
- };
Advertisement
Add Comment
Please, Sign In to add comment