64 lines
No EOL
2.4 KiB
JavaScript
64 lines
No EOL
2.4 KiB
JavaScript
var CalendarGoogle = function() {
|
|
|
|
return {
|
|
//main function to initiate the module
|
|
init: function() {
|
|
|
|
$('#m_calendar').fullCalendar({
|
|
header: {
|
|
left: 'prev,next today',
|
|
center: 'title',
|
|
right: 'month,listYear'
|
|
},
|
|
|
|
displayEventTime: false, // don't show the time column in list view
|
|
|
|
// THIS KEY WON'T WORK IN PRODUCTION!!!
|
|
// To make your own Google API key, follow the directions here:
|
|
// http://fullcalendar.io/docs/google_calendar/
|
|
googleCalendarApiKey: 'AIzaSyDcnW6WejpTOCffshGDDb4neIrXVUA1EAE',
|
|
|
|
// US Holidays
|
|
events: 'en.usa#holiday@group.v.calendar.google.com',
|
|
|
|
eventClick: function(event) {
|
|
// opens events in a popup window
|
|
window.open(event.url, 'gcalevent', 'width=700,height=600');
|
|
return false;
|
|
},
|
|
|
|
loading: function(bool) {
|
|
return;
|
|
|
|
/*
|
|
mApp.block(portlet.getSelf(), {
|
|
type: 'loader',
|
|
state: 'success',
|
|
message: 'Please wait...'
|
|
});
|
|
*/
|
|
},
|
|
|
|
eventRender: function(event, element) {
|
|
if (!event.description) {
|
|
return;
|
|
}
|
|
|
|
if (element.hasClass('fc-day-grid-event')) {
|
|
element.data('content', event.description);
|
|
element.data('placement', 'top');
|
|
mApp.initPopover(element);
|
|
} else if (element.hasClass('fc-time-grid-event')) {
|
|
element.find('.fc-title').append('<div class="fc-description">' + event.description + '</div>');
|
|
} else if (element.find('.fc-list-item-title').lenght !== 0) {
|
|
element.find('.fc-list-item-title').append('<div class="fc-description">' + event.description + '</div>');
|
|
}
|
|
}
|
|
});
|
|
}
|
|
};
|
|
}();
|
|
|
|
jQuery(document).ready(function() {
|
|
CalendarGoogle.init();
|
|
}); |