Mods-for-HESK-Netsyms/js/calendar/mods-for-hesk-calendar.js
Mike Koch 816a4413e1 #201 A basic calendar is now displayed
Still need to add a cluster of handlers to handle adding events, saving, loading, etc.
2016-01-12 22:06:34 -05:00

11 lines
268 B
JavaScript

$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
editable: true,
eventLimit: true
});
});