Update build files 🏗

This commit is contained in:
GitHub Action 2019-11-17 12:38:39 +00:00
parent 0e8e42e015
commit d2516e7de3
2 changed files with 6 additions and 4 deletions

View File

@ -3455,7 +3455,9 @@ function () {
itemChoice: 'item-choice'
}; // Assign preset groups from passed element
this._presetGroups = this.passedElement.optionGroups; // Assign preset choices from passed object
this._presetGroups = this.passedElement.optionGroups; // Assign preset options from passed element
this._presetOptions = this.passedElement.options; // Assign preset choices from passed object
this._presetChoices = this.config.choices; // Assign preset items from passed object first
@ -3555,12 +3557,12 @@ function () {
this.passedElement.reveal();
this.containerOuter.unwrap(this.passedElement.element);
this.clearStore();
if (this._isSelectElement) {
this.passedElement.options = this._presetChoices;
this.passedElement.options = this._presetOptions;
}
this.clearStore();
this._templates = null;
this.initialised = false;
};

File diff suppressed because one or more lines are too long