git 6 years ago
parent
commit
6fa4f53c37
  1. 2
      dist/bundle.js
  2. 2
      dist/core.js
  3. 2
      dist/fineui.js
  4. 742
      package-lock.json
  5. 2
      src/core/widget.js

2
dist/bundle.js vendored

@ -21351,6 +21351,7 @@ _.extend(BI.OB.prototype, {
(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), {
@ -21559,6 +21560,7 @@ _.extend(BI.OB.prototype, {
lazy && this._mountChildren && this._mountChildren();
this.mounted && this.mounted();
this._isMounting = false;
return true;
},
_mountChildren: null,

2
dist/core.js vendored

@ -21351,6 +21351,7 @@ _.extend(BI.OB.prototype, {
(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), {
@ -21559,6 +21560,7 @@ _.extend(BI.OB.prototype, {
lazy && this._mountChildren && this._mountChildren();
this.mounted && this.mounted();
this._isMounting = false;
return true;
},
_mountChildren: null,

2
dist/fineui.js vendored

@ -21572,6 +21572,7 @@ _.extend(BI.OB.prototype, {
(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), {
@ -21780,6 +21781,7 @@ _.extend(BI.OB.prototype, {
lazy && this._mountChildren && this._mountChildren();
this.mounted && this.mounted();
this._isMounting = false;
return true;
},
_mountChildren: null,

742
package-lock.json generated

File diff suppressed because it is too large Load Diff

2
src/core/widget.js

@ -12,6 +12,7 @@
(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), {
@ -220,6 +221,7 @@
lazy && this._mountChildren && this._mountChildren();
this.mounted && this.mounted();
this._isMounting = false;
return true;
},
_mountChildren: null,

Loading…
Cancel
Save