Skip to content

Commit

Permalink
FIX for adamcoulombe#103 to address menu display bugs in IE11. Blur/f…
Browse files Browse the repository at this point in the history
…ocus fix from this old comment probably no longer necessary as a fix in Firefox: adamcoulombe@9ba52e9
  • Loading branch information
patricknelson committed Oct 15, 2015
1 parent 6af8d15 commit 4bd9f3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
5 changes: 1 addition & 4 deletions jquery.customSelect.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,7 @@
changed($select,customSelectSpan);
})
.on('keyup.customSelect', function (e) {
if(!customSelectSpan.hasClass(getClass('Open'))){
$select.trigger('blur.customSelect');
$select.trigger('focus.customSelect');
}else{
if(customSelectSpan.hasClass(getClass('Open'))){
if(e.which==13||e.which==27){
changed($select,customSelectSpan);
}
Expand Down
2 changes: 1 addition & 1 deletion jquery.customSelect.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 4bd9f3f

Please sign in to comment.