Skip to content
Snippets Groups Projects
Commit 2cc86aeb authored by Laurent Heirendt's avatar Laurent Heirendt :airplane:
Browse files

Merge branch 'proposecache' into 'develop'

proposal to set no cache in headers

See merge request !154
parents ddc225c8 5b468647
No related branches found
No related tags found
2 merge requests!155Develop,!154proposal to set no cache in headers
Pipeline #29303 passed
......@@ -3,10 +3,14 @@ function UrlExists(url, cb) {
url: url,
dataType: 'text',
type: 'GET',
cache: false,
complete: function(xhr){
if(typeof cb === 'function')
cb.apply(this, [xhr.status]);
},
headers: {
'Cache-Control': 'no-cache, no-store, must-revalidate',
'Pragma': 'no-cache',
'Expires': '0'
}
});
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment