javascript.js 344 B

123456789101112131415161718
  1. angular
  2. .module('mwl.calendar.docs')
  3. .controller('DisableViewsCtrl', function(moment) {
  4. var vm = this;
  5. vm.events = [];
  6. vm.calendarView = 'year';
  7. vm.viewDate = moment().startOf('month').toDate();
  8. vm.viewChangeClicked = function(nextView) {
  9. if (nextView === 'month') {
  10. return false;
  11. }
  12. };
  13. });