From e3d8371af001e8e8f1014a97774df91ce5d30047 Mon Sep 17 00:00:00 2001 From: guy Date: Fri, 8 Dec 2017 14:14:07 +0800 Subject: [PATCH] update --- dist/fix/fix.compact.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dist/fix/fix.compact.js b/dist/fix/fix.compact.js index 85435580ec..9116bd8863 100644 --- a/dist/fix/fix.compact.js +++ b/dist/fix/fix.compact.js @@ -97,8 +97,9 @@ var old = BI.Widget.prototype[name]; old && (BI.Widget.prototype[name] = function () { this.store && pushTarget(this.store); - return old.apply(this, arguments); + var res = old.apply(this, arguments); this.store && popTarget(); + return res; }); })