|
|
@ -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; |
|
|
|