Skip to content

Commit 819205f

Browse files
committed
use native focus event - fixes shift+tab (broken in jquery 3.4.0) (#2469)
1 parent c08e164 commit 819205f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/bootstrap-select.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2625,7 +2625,7 @@
26252625
changedArguments = null;
26262626
})
26272627
.on('focus' + EVENT_KEY, function () {
2628-
if (!that.options.mobile) that.$button.trigger('focus');
2628+
if (!that.options.mobile) that.$button[0].focus();
26292629
});
26302630
},
26312631

0 commit comments

Comments
 (0)