JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr{ gilour

File "calendar.js"

Full Path: /var/www/lionsclub/assets/dashboard/js/scripts/plugins/calendar.js
File size: 539 bytes
MIME-type: text/plain
Charset: utf-8

(function ($) {
  "use strict";
  
    $(document).on('click', '#dayview', function() {
      $('.fullcalendar').fullCalendar('changeView', 'agendaDay')
    });

    $(document).on('click', '#weekview', function() {
      $('.fullcalendar').fullCalendar('changeView', 'agendaWeek')
    });

    $(document).on('click', '#monthview', function() {
      $('.fullcalendar').fullCalendar('changeView', 'month')
    });

    $(document).on('click', '#todayview', function() {
      $('.fullcalendar').fullCalendar('today')
    });

})(jQuery);