CC-4605: Some AJAX calls are cached

This commit is contained in:
Martin Konecny 2012-10-19 11:07:37 -04:00
parent d838d8ae30
commit ffca5b42a8
8 changed files with 28 additions and 5 deletions

View file

@ -479,6 +479,7 @@ var AIRTIME = (function(AIRTIME) {
"fnStateSave": function (oSettings, oData) {
localStorage.setItem('datatables-library', JSON.stringify(oData));
$.ajax({
cache: false,
url: "/usersettings/set-library-datatable",
type: "POST",
data: {settings : oData, format: "json"},
@ -542,6 +543,7 @@ var AIRTIME = (function(AIRTIME) {
aoData.push( { name: "type", value: type} );
$.ajax( {
"cache": false,
"dataType": 'json',
"type": "POST",
"url": sSource,
@ -883,6 +885,7 @@ var AIRTIME = (function(AIRTIME) {
}
request = $.ajax({
cache: false,
url: "/library/context-menu",
type: "GET",
data: {id : data.id, type: data.ftype, format: "json", "screen": screen},