Browse Source

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

* commit '009b54a25fe6e0f4852ccc71be614a5fd629f5d2':
  update
  BI-22367
es6
guy 6 years ago
parent
commit
fadc39241f
  1. 10
      dist/_fineui.min.js
  2. 6
      dist/bundle.js
  3. 2
      dist/bundle.min.js
  4. 6
      dist/fineui.js
  5. 10
      dist/fineui.min.js
  6. 6
      dist/widget.js
  7. 6
      src/widget/multiselect/multiselect.loader.nobar.js

10
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/bundle.js vendored

@ -98746,7 +98746,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -98811,9 +98811,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui.js vendored

@ -98989,7 +98989,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -99054,9 +99054,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

10
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/widget.js vendored

@ -11167,7 +11167,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -11232,9 +11232,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

6
src/widget/multiselect/multiselect.loader.nobar.js

@ -30,7 +30,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -95,9 +95,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

Loading…
Cancel
Save