Skip to content

Commit

Permalink
Merge ab8efe9 into 6a174ea
Browse files Browse the repository at this point in the history
  • Loading branch information
bwilson-ux committed Feb 2, 2016
2 parents 6a174ea + ab8efe9 commit 7f5af59
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions dist/js/selectize.js
Original file line number Diff line number Diff line change
Expand Up @@ -1068,7 +1068,8 @@
self.refreshState();

// IE11 bug: element still marked as active
(dest || document.body).focus();
//(dest || document.body).focus();
dest && dest.focus();

self.ignoreFocus = false;
self.trigger('blur');
Expand Down Expand Up @@ -3055,4 +3056,4 @@


return Selectize;
}));
}));

0 comments on commit 7f5af59

Please sign in to comment.