Last active
October 1, 2015 13:20
-
-
Save barnes7td/1ca706f592abad7acb82 to your computer and use it in GitHub Desktop.
fullcalendar
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function() { | |
$('#calendar').fullCalendar({ | |
header: { | |
left: 'prev,next today', | |
center: 'title', | |
right: 'month,basicWeek,basicDay' | |
}, | |
defaultDate: '2015-02-12', | |
editable: true, | |
eventLimit: true, // allow "more" link when too many events | |
events: [ | |
{ | |
title: 'All Day Event', | |
start: '2015-02-01' | |
}, | |
{ | |
title: 'Long Event', | |
start: '2015-02-07', | |
end: '2015-02-10' | |
} | |
] | |
}); | |
});f |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment