kthornbloom/Monthly

Show the list rather, than the calendar view

Opened this issue · 1 comments

Is there a possible hack of showing the list, which appears when you click on an event, rather then the calendar view?

My fast workaround:

jQuery(window).load( function() {
    var theList = jQuery("#mycalendar .monthly-event-list");
    theList.show();
    theList.css("transform");
    theList.css("transform", "scale(1)");
});