Browse Source

Merge pull request #254 in FUI/fineui from ~WINDY/fui:master to master

* commit 'd56eb913fccecf1937892fc9e6282279f7a3e703':
  down_list_combo_item的bubble
es6
guy 6 years ago
parent
commit
bf42a82e33
  1. 3
      demo/js/widget/downlist/demo.downlist.js
  2. 3
      dist/bundle.js
  3. 3
      dist/demo.js
  4. 3
      dist/fineui.js
  5. 3
      dist/widget.js
  6. 3
      src/widget/downlist/item.downlist.js

3
demo/js/widget/downlist/demo.downlist.js

@ -140,7 +140,8 @@ Demo.Downlist = BI.inherit(BI.Widget, {
text: "column 15",
cls: "dot-e-font",
value: 23
value: 23,
bubble: "hahahaha"
}
]

3
dist/bundle.js vendored

@ -79024,7 +79024,8 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit
textVgap: o.textVgap,
textLgap: o.textLgap,
textRgap: o.textRgap,
father: o.father
father: o.father,
bubble: o.bubble
});
this.text.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);

3
dist/demo.js vendored

@ -12114,7 +12114,8 @@ Demo.Downlist = BI.inherit(BI.Widget, {
text: "column 15",
cls: "dot-e-font",
value: 23
value: 23,
bubble: "hahahaha"
}
]

3
dist/fineui.js vendored

@ -80788,7 +80788,8 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit
textVgap: o.textVgap,
textLgap: o.textLgap,
textRgap: o.textRgap,
father: o.father
father: o.father,
bubble: o.bubble
});
this.text.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);

3
dist/widget.js vendored

@ -1996,7 +1996,8 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit
textVgap: o.textVgap,
textLgap: o.textLgap,
textRgap: o.textRgap,
father: o.father
father: o.father,
bubble: o.bubble
});
this.text.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);

3
src/widget/downlist/item.downlist.js

@ -35,7 +35,8 @@ BI.DownListItem = BI.inherit(BI.Single, {
textVgap: o.textVgap,
textLgap: o.textLgap,
textRgap: o.textRgap,
father: o.father
father: o.father,
bubble: o.bubble
});
this.text.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);

Loading…
Cancel
Save