Browse Source

无JIRA任务 title跟随问题

es6
windy 6 years ago
parent
commit
9c7ff8c507
  1. 13
      dist/base.js
  2. 13
      dist/bundle.ie.js
  3. 16
      dist/bundle.ie.min.js
  4. 13
      dist/bundle.js
  5. 16
      dist/bundle.min.js
  6. 25
      dist/demo.js
  7. 13
      dist/fineui.ie.js
  8. 62
      dist/fineui.ie.min.js
  9. 13
      dist/fineui.js
  10. 68
      dist/fineui.min.js
  11. 13
      dist/fineui_without_jquery_polyfill.js
  12. 2
      dist/utils.min.js
  13. 13
      src/base/single/single.js

13
dist/base.js vendored

@ -419,14 +419,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

13
dist/bundle.ie.js vendored

@ -35502,14 +35502,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

16
dist/bundle.ie.min.js vendored

File diff suppressed because one or more lines are too long

13
dist/bundle.js vendored

@ -35906,14 +35906,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

16
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

25
dist/demo.js vendored

@ -6126,7 +6126,30 @@ Demo.HtapeLayout = BI.inherit(BI.Widget, {
};
}
});
BI.shortcut("demo.htape", Demo.HtapeLayout);/**
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);/**
* Created by User on 2017/3/22.
*/
Demo.LeftRightVerticalAdaptLayout = BI.inherit(BI.Widget, {

13
dist/fineui.ie.js vendored

@ -35744,14 +35744,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

62
dist/fineui.ie.min.js vendored

File diff suppressed because one or more lines are too long

13
dist/fineui.js vendored

@ -36148,14 +36148,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

68
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

13
dist/fineui_without_jquery_polyfill.js vendored

@ -24658,14 +24658,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

2
dist/utils.min.js vendored

File diff suppressed because one or more lines are too long

13
src/base/single/single.js

@ -77,14 +77,15 @@ BI.Single = BI.inherit(BI.Widget, {
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
if (!self.element.__isMouseInBounds__(e)) {
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self._hideTooltip();
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);
}
self.timeout = BI.delay(function () {
self._showToolTip(self._e || e, opt);
}, 500);
self._hideTooltip();
});
this.element.on("mouseleave.title" + this.getName(), function () {
this.element.on("mouseleave.title" + this.getName(), function (e) {
self._e = null;
if (BI.isNotNull(self.timeout)) {
clearTimeout(self.timeout);

Loading…
Cancel
Save