Browse Source

Pull request #2049: 无JIRA任务 fix: bi.editor在连续调用BI.Bubbles.show(name,text)的场景下, name相同,text不同, text永远显示的是第一次调用的

Merge in VISUAL/fineui from ~DAILER/fineui:master to master

* commit 'b8ce359fb483efd63cfaed289b65a74fcf2e03b1':
  无JIRA fix: 做一次比较,省掉一次回流
  无JIRA任务 fix: bi.editor在连续调用BI.Bubbles.show(name,text)的场景下, name相同,text不同, text永远显示的是第一次调用的
es6
Dailer 3 years ago
parent
commit
5136965735
  1. 3
      src/core/controller/controller.bubbles.js

3
src/core/controller/controller.bubbles.js

@ -37,6 +37,9 @@ BI.BubblesController = BI.inherit(BI.Controller, {
});
}
var bubble = this.storeBubbles[name];
if (bubble.getText() !== text) {
bubble.setText(text);
}
BI.createWidget({
type: "bi.default",

Loading…
Cancel
Save