diff --git a/dist/base.js b/dist/base.js index cef194146..0732dca63 100644 --- a/dist/base.js +++ b/dist/base.js @@ -256,7 +256,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/dist/bundle.ie.js b/dist/bundle.ie.js index 461bbfae2..e4ed08b17 100644 --- a/dist/bundle.ie.js +++ b/dist/bundle.ie.js @@ -10585,6 +10585,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { @@ -35244,7 +35251,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/dist/bundle.js b/dist/bundle.js index ea40f8dc2..33083372c 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -10585,6 +10585,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { @@ -35648,7 +35655,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/dist/core.js b/dist/core.js index 92dc46a29..9e34031ad 100644 --- a/dist/core.js +++ b/dist/core.js @@ -10585,6 +10585,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { diff --git a/dist/fineui.ie.js b/dist/fineui.ie.js index fd9dde08a..2fe1ac1d8 100644 --- a/dist/fineui.ie.js +++ b/dist/fineui.ie.js @@ -10827,6 +10827,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { @@ -35486,7 +35493,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/dist/fineui.js b/dist/fineui.js index 380238158..8b321fc65 100644 --- a/dist/fineui.js +++ b/dist/fineui.js @@ -10827,6 +10827,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { @@ -35890,7 +35897,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/dist/fineui_without_jquery_polyfill.js b/dist/fineui_without_jquery_polyfill.js index 0d45fb607..29f841648 100644 --- a/dist/fineui_without_jquery_polyfill.js +++ b/dist/fineui_without_jquery_polyfill.js @@ -10585,6 +10585,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { @@ -24440,7 +24447,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/dist/utils.js b/dist/utils.js index 94414d325..a379f5168 100644 --- a/dist/utils.js +++ b/dist/utils.js @@ -11347,6 +11347,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) { diff --git a/src/base/pane.js b/src/base/pane.js index d578e2660..ae8e0981c 100644 --- a/src/base/pane.js +++ b/src/base/pane.js @@ -55,7 +55,7 @@ BI.Pane = BI.inherit(BI.Widget, { cls: "bi-loading-widget" + ((BI.isIE() && BI.getIEVersion() < 10) ? " hack" : ""), height: 30, width: 30, - hgap: 5.25, + hgap: 5, vgap: 2.5, items: [{ type: "bi.layout", diff --git a/src/core/base.js b/src/core/base.js index ec23b4362..06e926ba5 100644 --- a/src/core/base.js +++ b/src/core/base.js @@ -474,6 +474,13 @@ if (!_global.BI) { return sb; }, + init: function () { + // 先把准备环境准备好 + while (BI.prepares && BI.prepares.length > 0) { + BI.prepares.shift()(); + } + }, + has: function (obj, keys) { if (BI.isArray(keys)) { if (keys.length === 0) {