From 43c6bd768ff51560d3b2cc1b85c3ee033e04e4c6 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Wed, 16 Dec 2009 12:20:45 -0700 Subject: [PATCH] More correct, since the second argument to doActionComplete should not be the return from the X-JSON header --- imp/js/DimpBase.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/imp/js/DimpBase.js b/imp/js/DimpBase.js index fd3acc18b..ee7f76154 100644 --- a/imp/js/DimpBase.js +++ b/imp/js/DimpBase.js @@ -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]) { -- 2.11.0