Browse Source

无jira任务,loader的init方法最后会主动populate,所以this.button_group 就不需要传items进去了.

es6
Dailer 6 years ago
parent
commit
4b6fbf80b3
  1. 1
      dist/base.js
  2. 1
      dist/bundle.ie.js
  3. 4
      dist/bundle.ie.min.js
  4. 1
      dist/bundle.js
  5. 4
      dist/bundle.min.js
  6. 25
      dist/demo.js
  7. 1
      dist/fineui.ie.js
  8. 4
      dist/fineui.ie.min.js
  9. 1
      dist/fineui.js
  10. 4
      dist/fineui.min.js
  11. 1
      dist/fineui_without_jquery_polyfill.js
  12. 2
      dist/utils.min.js
  13. 1
      src/base/combination/loader.js

1
dist/base.js vendored

@ -4036,7 +4036,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

1
dist/bundle.ie.js vendored

@ -39122,7 +39122,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

4
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/bundle.js vendored

@ -39526,7 +39526,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

25
dist/demo.js vendored

@ -6126,30 +6126,7 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);Demo.InlineVerticalLayout = BI.inherit(BI.Widget, {
props: {
baseCls: "demo-absolute"
},
render: function () {
return {
type: "bi.inline_vertical_adapt",
items: [{
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 200
}, {
type: "bi.label",
text: "绝对布局",
cls: "layout-bg1",
width: 300,
height: 100
}]
};
}
});
BI.shortcut("demo.inline_vertical", Demo.InlineVerticalLayout);/**
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

1
dist/fineui.ie.js vendored

@ -39364,7 +39364,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

4
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/fineui.js vendored

@ -39768,7 +39768,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

1
dist/fineui_without_jquery_polyfill.js vendored

@ -27377,7 +27377,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

1
src/base/combination/loader.js

@ -74,7 +74,6 @@ BI.Loader = BI.inherit(BI.Widget, {
this.button_group = BI.createWidget(o.el, {
type: "bi.button_group",
chooseType: 0,
items: o.items,
behaviors: {},
layouts: [{
type: "bi.vertical"

Loading…
Cancel
Save