1
0
mirror of synced 2024-11-22 21:16:10 +03:00

Update select2.js

fixed destroy
This commit is contained in:
Vitaliy Ryaboy 2014-06-17 13:47:31 +02:00
parent 0d9893936c
commit 78526a3860

View File

@ -836,13 +836,13 @@ the specific language governing permissions and limitations under the Apache Lic
// abstract
destroy: function () {
var element=this.opts.element, select2 = element.data("select2");
var element=this.opts.element, select2 = element.data("select2"), self = this;
this.close();
if (element.length && element[0].detachEvent) {
element.each(function () {
this.detachEvent("onpropertychange", this._sync);
this.detachEvent("onpropertychange", self._sync);
});
}
if (this.propertyObserver) {