guy 7 years ago
parent
commit
eab98caf7b
  1. 4
      dist/fix/fix.compact.js

4
dist/fix/fix.compact.js vendored

@ -116,10 +116,14 @@
var _render = BI.Widget.prototype._render; var _render = BI.Widget.prototype._render;
BI.Widget.prototype._render = function () { BI.Widget.prototype._render = function () {
var needPop = false;
if (window.Fix && this._store) { if (window.Fix && this._store) {
needPop = true;
pushTarget(this.store);
initWatch(this, this.watch); initWatch(this, this.watch);
} }
_render.apply(this, arguments); _render.apply(this, arguments);
needPop && popTarget();
}; };
var unMount = BI.Widget.prototype.__d; var unMount = BI.Widget.prototype.__d;

Loading…
Cancel
Save