var current_year = $('{$current_year}');
var retain_date;
+ // add 7 days to ensure we always get the current month and not any other month view that may
+ // be visible (last few days of previous month or first few days of next month)
function get_current_view(){
var retain_date;
var calCurrDate = $('#eventCalendar').fullCalendar('getView').start;
return false;
}
}
+
+ $('#glm-event-from').on("change", function(){
+ var from_date = $(this).val();
+ $('#glm-event-to').val(from_date);
+
+ });
months = JSON.parse(months);
-// console.log(sessionStorage.view + " : " + sessionStorage.override);
event_search.on('click', function(){
sessionStorage.override = 'yes';
});