summaryrefslogtreecommitdiff
path: root/js/common.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/common.js')
-rwxr-xr-xjs/common.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/js/common.js b/js/common.js
index 1c9a0453c..e88b62602 100755
--- a/js/common.js
+++ b/js/common.js
@@ -155,7 +155,7 @@ const xhr = {
reject(error);
},
load: function(data, ioargs) {
- //console.log('xhr.post', '<<<', data, ioargs);
+ console.log('xhr.post', '<<<', ioargs.xhr);
if (complete != undefined)
complete(data, ioargs.xhr);
@@ -179,6 +179,9 @@ const xhr = {
console.log('xhr.json', '<<<', obj);
+ if (obj && typeof App != "undefined")
+ App.handleRpcJson(obj);
+
if (complete != undefined) complete(obj);
resolve(obj);