From 6ff429535506ecb8b2ff623b247b91aff98a147e Mon Sep 17 00:00:00 2001 From: windy <1374721899@qq.com> Date: Mon, 8 Jul 2019 19:58:00 +0800 Subject: [PATCH] update --- src/widget/multiselect/multiselect.loader.js | 24 -------------------- 1 file changed, 24 deletions(-) diff --git a/src/widget/multiselect/multiselect.loader.js b/src/widget/multiselect/multiselect.loader.js index 456562995..90a42a730 100644 --- a/src/widget/multiselect/multiselect.loader.js +++ b/src/widget/multiselect/multiselect.loader.js @@ -149,30 +149,6 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, { val.value || (val.value = []); }, - _assertMasker: function() { - var self = this, o = this.options; - if(BI.isNull(this.masker)) { - BI.createWidget({ - type: "bi.absolute", - element: this, - items: [{ - el: { - type: "bi.layout", - cls: "disable-mask", - invisible: !o.disabled, - ref: function () { - self.masker = this; - } - }, - left: 0, - right: 0, - top: 0, - bottom: 0 - }] - }) - } - }, - setStartValue: function (v) { this._startValue = v; },