I'm using fullcalendar, it's really a good tool to create calendar-based application.
But I have a question about the wonderful tool.
When call one method in fullcalendar, we do things like this:
$('#calendar').fullCalendar('next');
I'm wondering why it is not something like this:
$('#calendar').fullCalendar.next();
or even
$('#calendar').next();
that's the way how javascript call a method or function, right?
what's the design philosophy or the necessity behind this?
Thanks! and I'm sorry for my poor English.