From 2b0a4d1f76bda13a53b0727ffe7b82aabdf12551 Mon Sep 17 00:00:00 2001 From: Marcin Kurczewski Date: Fri, 21 Nov 2014 22:24:06 +0100 Subject: [PATCH] Removed AJAX external caching jQuery's caching caused problems in some scenarios, for example with scoring/faving posts. --- public_html/js/Api.js | 1 + 1 file changed, 1 insertion(+) diff --git a/public_html/js/Api.js b/public_html/js/Api.js index dccb2edb..1bc45e17 100644 --- a/public_html/js/Api.js +++ b/public_html/js/Api.js @@ -92,6 +92,7 @@ App.API = function(_, jQuery, promise, appState) { type: method, url: fullUrl, data: data, + cache: false, }); }); apiPromise.xhr = xhr;