Browse Source

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

* commit 'e67410782d77d769008899da9b66ccde607edd5b':
  BI-46461 fix: safari的title显示兼容
  BI-46461 fix: safari下的title显示兼容问题
es6
windy 5 years ago
parent
commit
6ef96f8931
  1. 5
      src/base/single/tip/tip.tooltip.js

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

@ -57,12 +57,13 @@ BI.Tooltip = BI.inherit(BI.Tip, {
});
} else {
this.text = BI.createWidget({
type: "bi.text",
type: "bi.label",
element: this,
textAlign: "left",
whiteSpace: "normal",
text: o.text,
height: 16,
height: o.height,
textHeight: o.height - 2,
hgap: this._const.hgap
});
}

Loading…
Cancel
Save