Browse Source

Merge pull request #1088 in VISUAL/fineui from ~WINDY/fineui:master to master

* commit '9e34fab47ff6d98a11612baf823ae99e86b6e5ec':
  revert: stopP的问题
es6
windy 5 years ago
parent
commit
6dd77f585b
  1. 9
      src/base/single/single.js

9
src/base/single/single.js

@ -37,11 +37,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
},
_getShowTitle: function() {
var type = this.getTipType() || (this.isEnabled() ? "success" : "warning");
return type === "success" ? this.getTitle() : (this.getWarningTitle() || this.getTitle());
},
_hideTooltip: function () {
var self = this;
var tooltip = BI.Tooltips.get(this.getName());
@ -94,8 +89,6 @@ BI.Single = BI.inherit(BI.Widget, {
}
}, 500);
}
// 如果当前控件设置了title, 那么最终显示的是当前title,而不应该是祖先的title
BI.isKey(self._getShowTitle()) && e.stopPropagation();
});
this.element.on("mousemove.title" + this.getName(), function (e) {
self._e = e;
@ -121,8 +114,6 @@ BI.Single = BI.inherit(BI.Widget, {
self._showToolTip(self._e || e, opt);
}
}, 500);
// 如果当前控件设置了title, 那么最终显示的是当前title,而不应该是祖先的title
BI.isKey(self._getShowTitle()) && e.stopPropagation();
});
this.element.on("mouseleave.title" + this.getName(), function (e) {

Loading…
Cancel
Save