windy 6 years ago
parent
commit
2a02e9263b
  1. 22
      dist/_fineui.min.js
  2. 4
      dist/base.js
  3. 7
      dist/bundle.js
  4. 8
      dist/bundle.min.js
  5. 3
      dist/case.js
  6. 7
      dist/fineui.js
  7. 22
      dist/fineui.min.js
  8. 4
      src/base/single/single.js
  9. 1
      src/case/combo/icontextvaluecombo/combo.icontextvalue.js
  10. 1
      src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js
  11. 1
      src/case/combo/textvaluecombo/combo.textvalue.js

22
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/base.js vendored

@ -353,8 +353,8 @@ BI.Single = BI.inherit(BI.Widget, {
var title = type === "success" ? this.getTitle() : (this.getWarningTitle() || this.getTitle());
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", o);
if (o.action) {
BI.Actions.runAction(o.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", o);
}

7
dist/bundle.js vendored

@ -36158,8 +36158,8 @@ BI.Single = BI.inherit(BI.Widget, {
var title = type === "success" ? this.getTitle() : (this.getWarningTitle() || this.getTitle());
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", o);
if (o.action) {
BI.Actions.runAction(o.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", o);
}
@ -78500,6 +78500,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_icon_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,
@ -78665,6 +78666,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
ref: function () {
self.trigger = this;
},
action: o.action,
items: o.items,
height: o.height - 2,
text: o.text,
@ -79254,6 +79256,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/case.js vendored

@ -5935,6 +5935,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_icon_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,
@ -6100,6 +6101,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
ref: function () {
self.trigger = this;
},
action: o.action,
items: o.items,
height: o.height - 2,
text: o.text,
@ -6689,6 +6691,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,

7
dist/fineui.js vendored

@ -36407,8 +36407,8 @@ BI.Single = BI.inherit(BI.Widget, {
var title = type === "success" ? this.getTitle() : (this.getWarningTitle() || this.getTitle());
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", o);
if (o.action) {
BI.Actions.runAction(o.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", o);
}
@ -78749,6 +78749,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_icon_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,
@ -78914,6 +78915,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
ref: function () {
self.trigger = this;
},
action: o.action,
items: o.items,
height: o.height - 2,
text: o.text,
@ -79503,6 +79505,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,

22
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
src/base/single/single.js

@ -30,8 +30,8 @@ BI.Single = BI.inherit(BI.Widget, {
var title = type === "success" ? this.getTitle() : (this.getWarningTitle() || this.getTitle());
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", o);
if (o.action) {
BI.Actions.runAction(o.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", o);
}

1
src/case/combo/icontextvaluecombo/combo.icontextvalue.js

@ -18,6 +18,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_icon_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,

1
src/case/combo/searchtextvaluecombo/combo.searchtextvalue.js

@ -29,6 +29,7 @@ BI.SearchTextValueCombo = BI.inherit(BI.Widget, {
ref: function () {
self.trigger = this;
},
action: o.action,
items: o.items,
height: o.height - 2,
text: o.text,

1
src/case/combo/textvaluecombo/combo.textvalue.js

@ -20,6 +20,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
action: o.action,
items: o.items,
height: o.height,
text: o.text,

Loading…
Cancel
Save