Skip to content
This repository was archived by the owner on Apr 18, 2026. It is now read-only.

Commit 77e1366

Browse files
committed
Fix #997 dist bork
1 parent 3e900a5 commit 77e1366

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/selectize.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ $.extend(Selectize.prototype, {
622622
self.refreshState();
623623

624624
// IE11 bug: element still marked as active
625-
(dest || document.body).focus();
625+
dest && dest.focus();
626626

627627
self.ignoreFocus = false;
628628
self.trigger('blur');

0 commit comments

Comments
 (0)