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;