More correct, since the second argument to doActionComplete should not be the return...
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 16 Dec 2009 19:20:45 +0000 (12:20 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 16 Dec 2009 19:45:59 +0000 (12:45 -0700)
imp/js/DimpBase.js

index fd3acc1..ee7f761 100644 (file)
@@ -471,7 +471,9 @@ var DimpBase = {
                 }
                 return DimpCore.addRequestParams(p);
             }.bind(this),
-            onAjaxResponse: DimpCore.doActionComplete.bind(DimpCore),
+            onAjaxResponse: function(o, h) {
+                DimpCore.doActionComplete(o);
+            },
             onCachedList: function(id) {
                 var tmp, vs;
                 if (!this.cacheids[id]) {