From df6c902d6fc02c441a04073ddd2c7e21a0a5af72 Mon Sep 17 00:00:00 2001 From: Young Date: Wed, 22 Aug 2018 10:41:11 +0800 Subject: [PATCH] =?UTF-8?q?BI-30819=E3=80=905.0=E4=B8=89=E8=BD=AE=E5=9B=9E?= =?UTF-8?q?=E5=BD=92=E3=80=91=E6=B1=87=E6=80=BB=E8=A1=A8=E8=A1=8C=E8=A1=A8?= =?UTF-8?q?=E5=A4=B4=E6=9C=89=E5=AD=97=E6=AE=B5=E7=9A=84=E6=83=85=E5=86=B5?= =?UTF-8?q?=E4=B8=8B=EF=BC=8C=E5=88=87=E6=8D=A2=E4=B8=BA=E6=A0=91=E7=8A=B6?= =?UTF-8?q?=E5=B1=95=E7=A4=BA=EF=BC=8C=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dist/fineui_without_jquery_polyfill.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dist/fineui_without_jquery_polyfill.js b/dist/fineui_without_jquery_polyfill.js index b6812cf34..9d4f1e0b8 100644 --- a/dist/fineui_without_jquery_polyfill.js +++ b/dist/fineui_without_jquery_polyfill.js @@ -11783,12 +11783,6 @@ _.extend(BI.OB.prototype, { */ !(function () { - var lazy = (typeof document !== "undefined" && - typeof document.documentMode === "number") || - (typeof navigator !== "undefined" && - typeof navigator.userAgent === "string" && - /\bEdge\/\d/.test(navigator.userAgent)); - BI.Widget = BI.inherit(BI.OB, { _defaultConfig: function () { return BI.extend(BI.Widget.superclass._defaultConfig.apply(this), { @@ -11969,13 +11963,12 @@ _.extend(BI.OB.prototype, { } this.beforeMount && this.beforeMount(); this._isMounted = true; - !lazy && this._mountChildren && this._mountChildren(); + this._mountChildren && this._mountChildren(); BI.each(this._children, function (i, widget) { !self.isEnabled() && widget._setEnable(false); !self.isValid() && widget._setValid(false); widget._mount && widget._mount(); }); - lazy && this._mountChildren && this._mountChildren(); this.mounted && this.mounted(); return true; },