replacing jquery selector for the agenda view calendar to remove the fc-scroller...
authorAnthony Talarico <talarico@gaslightmedia.com>
Tue, 27 Sep 2016 15:16:34 +0000 (11:16 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Tue, 27 Sep 2016 15:16:34 +0000 (11:16 -0400)
views/front/events/agenda.html

index 2b97dfc..14c8282 100644 (file)
@@ -84,9 +84,9 @@
         var event_search        = $(".glm-search-icon");
         var main_content        = $("#main-content");
         var view                = '{$cal_view}';
-        var cal_scroll          = $('.fc-scroller');
+        var grid_container      = $(".fc-day-grid-container");
         
-        cal_scroll.remove();
+        grid_container.removeClass("fc-scroller");
 
 
         // AJAX FUNCTION ************************************************