windy 6 years ago
parent
commit
1e18c8b198
  1. 84
      dist/_fineui.min.js
  2. 12
      dist/base.js
  3. 10
      dist/bundle.js
  4. 28
      dist/bundle.min.js
  5. 10
      dist/fineui.js
  6. 84
      dist/fineui.min.js
  7. 10
      src/base/single/single.js

84
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

12
dist/base.js vendored

@ -354,15 +354,9 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
}
BI.Actions.runGlobalAction("hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runAction(opt.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", o);
}
},

10
dist/bundle.js vendored

@ -36159,15 +36159,9 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runAction(opt.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runGlobalAction("hover", o);
}
},

28
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

10
dist/fineui.js vendored

@ -36408,15 +36408,9 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runAction(opt.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runGlobalAction("hover", o);
}
},

84
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

10
src/base/single/single.js

@ -31,15 +31,9 @@ BI.Single = BI.inherit(BI.Widget, {
if (BI.isKey(title)) {
BI.Tooltips.show(e, this.getName(), title, type, this, opt);
if (opt.action) {
BI.Actions.runAction(opt.action, "hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runAction(opt.action, "hover", o);
}
BI.Actions.runGlobalAction("hover", BI.extend({}, opt, {
title: o.title,
warningTitle: o.warningTitle
}));
BI.Actions.runGlobalAction("hover", o);
}
},

Loading…
Cancel
Save