Not sure if this was the right way to go about it... but...
I needed a quick way to dynamically set the defaultEventMinutes.
My solution is as follows (in fullcalendar.js):
In the EventManager function, I added this line:
//exports
t.setDefaultEventMinutes = setDefaultEventMinutes;
Then, I added the following function under the Manipulation section:
function setDefaultEventMinutes(m) {
options.defaultEventMinutes = m;
}
Usage is as follows:
var numberOfMinutes = 90;
$('#calendar').fullCalendar('setDefaultEventMinutes', numberOfMinutes );
Mergedinto: 293