Problem with all callbacks

Issue #18 resolved
Axel Nilsson created an issue

Hey guys, trying this out before buying it.

Im having an issue with all the click callbacks, all returning empty objects. Please fix as soon as possible.

$(".responsive-calendar").responsiveCalendar({

    monthChangeAnimation: false,
    onDayClick: function(events){
        console.log(events);
    },
    onDayHover: function(events){
        console.log(events);
    },
    onActiveDayClick: function(events){
        console.log(events);
    },
    onActiveDayHover: function(events){
        console.log(events);
    }

});

They all console out Object {}

Comments (2)

  1. Log in to comment