Selaa lähdekoodia

fixed IE JSON caching issue

Adam Shaw 17 vuotta sitten
vanhempi
sitoutus
943ec262d2
1 muutettua tiedostoa jossa 1 lisäystä ja 0 poistoa
  1. 1 0
      fullcalendar.js

+ 1 - 0
fullcalendar.js

@@ -240,6 +240,7 @@
 					var jsonOptions = {};
 					jsonOptions[options.startParam || 'start'] = Math.round(start.getTime() / 1000);
 					jsonOptions[options.endParam || 'end'] = Math.round(end.getTime() / 1000);
+					jsonOptions['_t'] = (new Date()).getTime();
 					$.getJSON(options.events, jsonOptions, function(data) {
 						events = cleanEvents(data);
 						renderEvents(events);