diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-11-24 16:40:22 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-11-24 16:40:22 +0800 |
commit | ef4ffe1c5cb865e20b236192e1acf15fb36e4eed (patch) | |
tree | b7a5ccdb421879f61eb79b124bbfec6b2c335e43 /fg21sim/webui/static/js/console.js | |
parent | 098656014870aa59d9ffde51c4021a3e21ddfae0 (diff) | |
download | fg21sim-ef4ffe1c5cb865e20b236192e1acf15fb36e4eed.tar.bz2 |
webui: Use new ".getJSONUncached()" instead of ".getJSON()"
Diffstat (limited to 'fg21sim/webui/static/js/console.js')
-rw-r--r-- | fg21sim/webui/static/js/console.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fg21sim/webui/static/js/console.js b/fg21sim/webui/static/js/console.js index 2bb9525..5100c7a 100644 --- a/fg21sim/webui/static/js/console.js +++ b/fg21sim/webui/static/js/console.js @@ -145,7 +145,7 @@ var deleteLogMessages = function () { * @param {String} url - The URL that handles the "console" AJAX requests. */ var getServerTaskStatus = function (url) { - return $.getJSON(url) + return $.getJSONUncached(url) .fail(function (jqxhr) { var modalData = {}; modalData.icon = "times-circle"; |