Do not check jsonp since we are not using it and it might cause errors by setting dataType to script falsely

This commit is contained in:
Hadi Nategh 2019-02-20 13:24:43 +01:00
parent b16e93bfe3
commit 72cad447b0

View File

@ -131,6 +131,7 @@ egw.extend('json', egw.MODULE_WND_LOCAL, function(_app, _wnd)
dataType: 'json', dataType: 'json',
type: method, type: method,
success: this.handleResponse, success: this.handleResponse,
jsonp: false,
error: error || this.handleError error: error || this.handleError
}); });