1
0
mirror of synced 2024-11-21 20:46:07 +03:00

use correct options in createMultiSelect

This commit is contained in:
Igor Vaynberg 2019-06-27 17:33:40 -07:00
parent 09494074b8
commit af901bafaa
4 changed files with 4 additions and 4 deletions

View File

@ -207,7 +207,7 @@ function createSingleSelect(element: HTMLInputElement, options: SingleSelectOpti
}
function createMultiSelect(element: HTMLInputElement, options: SingleSelectOptions) {
options = extend({}, DEFAULT_SINGLE_SELECT_OPTIONS, options);
options = extend({}, DEFAULT_MULTI_SELECT_OPTIONS, options);
fillBaseOptions(element, options);
const store = Store.getStore(element);

2
dist/select25.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -61,7 +61,7 @@
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run dist && git add ."
"pre-commit": "lint-staged && npm run dist && git add dist"
}
},
"lint-staged": {