Browse Source

chore: 整理代码

es6
guy 3 years ago
parent
commit
6cd90823a6
  1. 5
      src/base/combination/combo.js

5
src/base/combination/combo.js

@ -1,5 +1,6 @@
!(function () { !(function () {
var needHideWhenAnotherComboOpen = {}; var needHideWhenAnotherComboOpen = {};
var currentOpenedCombo;
/** /**
* @class BI.Combo * @class BI.Combo
* @extends BI.Widget * @extends BI.Widget
@ -141,6 +142,7 @@
this.element.removeClass(this.options.comboClass); this.element.removeClass(this.options.comboClass);
delete needHideWhenAnotherComboOpen[this.getName()]; delete needHideWhenAnotherComboOpen[this.getName()];
currentOpenedCombo = null;
BI.Widget._renderEngine.createElement(document).unbind("mousedown." + this.getName()).unbind("mousewheel." + this.getName()); BI.Widget._renderEngine.createElement(document).unbind("mousedown." + this.getName()).unbind("mousewheel." + this.getName());
BI.EVENT_BLUR && o.hideWhenBlur && BI.Widget._renderEngine.createElement(window).unbind("blur." + this.getName()); BI.EVENT_BLUR && o.hideWhenBlur && BI.Widget._renderEngine.createElement(window).unbind("blur." + this.getName());
@ -161,6 +163,7 @@
} }
} }
}); });
!this.options.hideWhenAnotherComboOpen && (currentOpenedCombo = this);
this.options.hideWhenAnotherComboOpen && (needHideWhenAnotherComboOpen[this.getName()] = this); this.options.hideWhenAnotherComboOpen && (needHideWhenAnotherComboOpen[this.getName()] = this);
this.adjustWidth(e); this.adjustWidth(e);
this.adjustHeight(e); this.adjustHeight(e);
@ -303,11 +306,13 @@
} }
}); });
BI.Combo.closeAll = function () { BI.Combo.closeAll = function () {
currentOpenedCombo && currentOpenedCombo.hideView();
BI.each(needHideWhenAnotherComboOpen, function (i, combo) { BI.each(needHideWhenAnotherComboOpen, function (i, combo) {
if (combo) { if (combo) {
combo.hideView(); combo.hideView();
} }
}); });
currentOpenedCombo = null;
needHideWhenAnotherComboOpen = {}; needHideWhenAnotherComboOpen = {};
}; };
BI.Combo.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE"; BI.Combo.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE";

Loading…
Cancel
Save