mirror of
https://github.com/wassname/fullcalendar.git
synced 2026-07-31 12:20:08 +08:00
Small tweak to allow event caching by adding cacheEvents:true to the config options.
This commit is contained in:
+1
-1
@@ -365,7 +365,7 @@ $.fn.fullCalendar = function(options) {
|
||||
url: src,
|
||||
dataType: 'json',
|
||||
data: params,
|
||||
cache: options.cacheParam || false, // don't let jquery prevent caching if cacheParam is being used
|
||||
cache: options.cacheEvents || options.cacheParam || false, // don't let jquery prevent caching if cacheParam is being used
|
||||
success: reportEventsAndPop
|
||||
});
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user