Browse Source

Revert "KERNEL-12609 fix: From FDL 显示日志信息场景,label默认带有tooltip逻辑导致卡顿"

This reverts commit d09bd2e3d9.
es6
zsmj 2 years ago
parent
commit
2877f5f7c0
  1. 6
      src/base/single/tip/tip.tooltip.js

6
src/base/single/tip/tip.tooltip.js

@ -25,12 +25,10 @@ BI.Tooltip = BI.inherit(BI.Tip, {
render: function () {
var o = this.options;
this.element.addClass("tooltip-" + o.level);
function fn(e) {
o.stopPropagation && e.stopPropagation();
o.stopEvent && e.stopEvent();
}
this.element.bind({
click: fn,
mousedown: fn,
@ -50,7 +48,7 @@ BI.Tooltip = BI.inherit(BI.Tip, {
innerVgap: this._const.vgap,
items: BI.map(texts, function (i, text) {
return {
type: "bi.text",
type: "bi.label",
textAlign: o.textAlign,
whiteSpace: "normal",
text: text,
@ -60,7 +58,7 @@ BI.Tooltip = BI.inherit(BI.Tip, {
});
} else {
this.text = BI.createWidget({
type: "bi.text",
type: "bi.label",
element: this,
textAlign: o.textAlign,
whiteSpace: "normal",

Loading…
Cancel
Save