From eab98caf7badd46b5512c62fabbec9f0b433e389 Mon Sep 17 00:00:00 2001 From: guy Date: Mon, 22 Jan 2018 10:18:17 +0800 Subject: [PATCH] update --- dist/fix/fix.compact.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dist/fix/fix.compact.js b/dist/fix/fix.compact.js index ecb79592a..03688192a 100644 --- a/dist/fix/fix.compact.js +++ b/dist/fix/fix.compact.js @@ -116,10 +116,14 @@ var _render = BI.Widget.prototype._render; BI.Widget.prototype._render = function () { + var needPop = false; if (window.Fix && this._store) { + needPop = true; + pushTarget(this.store); initWatch(this, this.watch); } _render.apply(this, arguments); + needPop && popTarget(); }; var unMount = BI.Widget.prototype.__d;