trying jquery.get per forum suggestion to get ajax requests to work on windows for...
authorAnthony Talarico <talarico@gaslightmedia.com>
Tue, 30 Aug 2016 13:42:11 +0000 (09:42 -0400)
committerAnthony Talarico <talarico@gaslightmedia.com>
Tue, 30 Aug 2016 13:42:11 +0000 (09:42 -0400)
views/front/events/agenda.html

index c1f591d..a9a1352 100644 (file)
 //                    $("#eventCalendar").fullCalendar('addEventSource', buildingEvents);
 //                }
 //            });
-            jQuery.post('{$ajaxUrl}', dat, function (response){
+            jQuery.get('{$ajaxUrl}', dat, function (response){
                 var buildingEvents = [];
                     var events_obj = jQuery.parseJSON(response);
                     var events = events_obj.events;