i have this data for the calender
var codropsEvents = {
"09-10-2013" : "Event Name 1",
"09-11-2013" : "Event Name 2"
};
from the data its an array of object . I want to make it dynamic so i did something like this
var codropsEvents = [];
codropsEvents.push({"09-10-2013" : "Event Name 1"});
but its not showing up the event on calender . Am i initializing the array of object in wrong way or i am pushing the data wrong .
The calender is here http://tympanus.net/codrops/2012/11/27/calendario-a-flexible-calendar-plugin/comment-page-4/