the stock intel update of 2014-08-08 adds two new fields to every request - called 'b' and 'c', both blank strings
no idea why, or what they're for - and it does seem to work without them - but duplicate in case it's important
This commit is contained in:
parent
8b95e18ef9
commit
a58238158f
@ -141,7 +141,7 @@ window.digits = function(d) {
|
|||||||
window.postAjax = function(action, data, success, error) {
|
window.postAjax = function(action, data, success, error) {
|
||||||
|
|
||||||
var versionStr = nemesis.dashboard.config.CURRENT_VERSION;
|
var versionStr = nemesis.dashboard.config.CURRENT_VERSION;
|
||||||
var post_data = JSON.stringify($.extend({}, data, {v: versionStr}));
|
var post_data = JSON.stringify($.extend({}, data, {v: versionStr, b: "", c: ""}));
|
||||||
|
|
||||||
var remove = function(data, textStatus, jqXHR) { window.requests.remove(jqXHR); };
|
var remove = function(data, textStatus, jqXHR) { window.requests.remove(jqXHR); };
|
||||||
var errCnt = function(jqXHR) { window.failedRequestCount++; window.requests.remove(jqXHR); };
|
var errCnt = function(jqXHR) { window.failedRequestCount++; window.requests.remove(jqXHR); };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user