From: Michael M Slusarz Date: Wed, 16 Dec 2009 19:20:45 +0000 (-0700) Subject: More correct, since the second argument to doActionComplete should not be the return... X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=43c6bd768ff51560d3b2cc1b85c3ee033e04e4c6;p=horde.git More correct, since the second argument to doActionComplete should not be the return from the X-JSON header --- 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]) {