11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
|
$(document).ready(function() {
|
||
|
$('#calendar').fullCalendar({
|
||
|
header: {
|
||
|
left: 'prev,next today',
|
||
|
center: 'title',
|
||
|
right: ''
|
||
|
},
|
||
|
events: '/events',
|
||
|
});
|
||
|
});
|