Skip to content

Commit

Permalink
Merge pull request #997 from bwilson-ux/master
Browse files Browse the repository at this point in the history
Updating to remedy IE11 Tabbing issue
  • Loading branch information
joallard committed May 28, 2016
2 parents 126d72f + ab8efe9 commit ac9ee01
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;
}));
}));

2 comments on commit ac9ee01

@mpokrywka
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change should affect src/selectize.js, not file in dist folder that will be regenerated on build

@joallard
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@mpokrywka Arg I missed that one, thanks

Please sign in to comment.