Skip to content

Commit

Permalink
Merge pull request #438 from himdel/livesearchfocus
Browse files Browse the repository at this point in the history
miq-select: default liveSearchFocus to false
(cherry picked from commit b924793)
  • Loading branch information
mzazrivec authored and simaishi committed May 27, 2020
1 parent 5329ea3 commit 3337825
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/miq-select/miqSelect.js
Expand Up @@ -20,7 +20,9 @@ var miqSelect = function () {
element.selectpicker('destroy');
};

element.selectpicker(scope.selectPickerOptions);
element.selectpicker(scope.selectPickerOptions || {
liveSearchFocus: false,
});

ngModel.$render = function () {
$render.apply(this, arguments);
Expand Down

0 comments on commit 3337825

Please sign in to comment.