Skip to content

Commit

Permalink
Fix keyboard not closing when closing dropdown on iOS 10 (#4680)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexweissman committed Oct 26, 2017
1 parent 7d41ea1 commit ef2ef8b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -3,6 +3,7 @@
## 4.0.6

### Bug fixes
- Fix keyboard not closing when closing dropdown on iOS 10 (#4680)
- User-defined types not normalized properly when passed in as data (#4632)

## 4.0.5
Expand Down
1 change: 1 addition & 0 deletions src/js/select2/dropdown/search.js
Expand Up @@ -60,6 +60,7 @@ define([
self.$search.attr('tabindex', -1);

self.$search.val('');
self.$search.blur();
});

container.on('focus', function () {
Expand Down

0 comments on commit ef2ef8b

Please sign in to comment.