Browse Source

Pull request #2421: 无JIRA任务 chore: 整理代码

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

* commit 'aa7af7d885b6bb64045e1f3343cc868cb5eef837':
  chore: 整理代码
es6
guy 3 years ago
parent
commit
55dc96a068
  1. 8
      src/base/combination/combo.js

8
src/base/combination/combo.js

@ -302,6 +302,14 @@
delete needHideWhenAnotherComboOpen[this.getName()];
}
});
BI.Combo.closeAll = function () {
BI.each(needHideWhenAnotherComboOpen, function (i, combo) {
if (combo) {
combo.hideView();
}
});
needHideWhenAnotherComboOpen = {};
};
BI.Combo.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE";
BI.Combo.EVENT_CHANGE = "EVENT_CHANGE";
BI.Combo.EVENT_EXPAND = "EVENT_EXPAND";

Loading…
Cancel
Save