Browse Source

loading异步加载情况下不需要显示tipText,由loaded后的populate决定

es6
windy 6 years ago
parent
commit
a6d5169ebc
  1. 3
      dist/base.js
  2. 3
      dist/bundle.js
  3. 58
      dist/bundle.min.js
  4. 3
      dist/fineui.js
  5. 58
      dist/fineui.min.js
  6. 3
      dist/fineui_without_jquery_polyfill.js
  7. 2
      dist/utils.min.js
  8. 3
      src/base/pane.js

3
dist/base.js vendored

@ -275,6 +275,9 @@ BI.Pane = BI.inherit(BI.Widget, {
width: 5
}]
});
// pane在同步方式下由items决定tipText的显示与否
// loading的异步情况下由loaded前对面板的populate的时机决定
this.setTipVisible(false);
if (o.overlap === true) {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({

3
dist/bundle.js vendored

@ -35571,6 +35571,9 @@ BI.Pane = BI.inherit(BI.Widget, {
width: 5
}]
});
// pane在同步方式下由items决定tipText的显示与否
// loading的异步情况下由loaded前对面板的populate的时机决定
this.setTipVisible(false);
if (o.overlap === true) {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({

58
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/fineui.js vendored

@ -35813,6 +35813,9 @@ BI.Pane = BI.inherit(BI.Widget, {
width: 5
}]
});
// pane在同步方式下由items决定tipText的显示与否
// loading的异步情况下由loaded前对面板的populate的时机决定
this.setTipVisible(false);
if (o.overlap === true) {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({

58
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/fineui_without_jquery_polyfill.js vendored

@ -24403,6 +24403,9 @@ BI.Pane = BI.inherit(BI.Widget, {
width: 5
}]
});
// pane在同步方式下由items决定tipText的显示与否
// loading的异步情况下由loaded前对面板的populate的时机决定
this.setTipVisible(false);
if (o.overlap === true) {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

3
src/base/pane.js

@ -74,6 +74,9 @@ BI.Pane = BI.inherit(BI.Widget, {
width: 5
}]
});
// pane在同步方式下由items决定tipText的显示与否
// loading的异步情况下由loaded前对面板的populate的时机决定
this.setTipVisible(false);
if (o.overlap === true) {
if (!BI.Layers.has(this.getName())) {
BI.createWidget({

Loading…
Cancel
Save