Issue 1086: setDefaultEventMinutes
Status:  Duplicate
Merged:  issue 293
Owner: ----
Closed:  Aug 2011
Reported by beriniw...@gmail.com, Aug 17, 2011
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 );
Aug 24, 2011
Project Member #1 althaus.it
This is related to the possibility to set all options dynamically. There's an issue about it.
Status: Duplicate
Mergedinto: 293