Skip to content

Commit 8c833c4

Browse files
author
Anand Phulwani
committed
Rectified selectize#1164 issue, considered previously fixed
Rectified selectize#1164 issue considered previously fixed, done with the pull selectize#1353 and pushed commit michael-maltsev@f6e9faa
1 parent 1fc32eb commit 8c833c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/selectize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1811,7 +1811,7 @@ $.extend(Selectize.prototype, {
18111811
// Do not trigger blur while inside a blur event,
18121812
// this fixes some weird tabbing behavior in FF and IE.
18131813
// See #1164
1814-
if (!self.isBlurring) {
1814+
if (self.isBlurring) {
18151815
self.$control_input.blur(); // close keyboard on iOS
18161816
}
18171817
}

0 commit comments

Comments
 (0)