vestman / Select-or-Die

Yet another jQuery plugin to style select elements. Demo at http://vst.mn/selectordie/
MIT License
524 stars 133 forks source link

Fix Windows 8 issue relating to focus and scope. #15

Closed mcaskill closed 9 years ago

mcaskill commented 9 years ago

The issue being that the .sod_list_wrapper does not properly show and the selection is not processed. I'm sure @cah4a can explain this better.

This commit from @cah4a fixes issues under Windows 8 with Internet Explorer and Chrome (and possibly Firefox).

This resolves (based on the conversations) the following issues : #6, #7, #14

cah4a commented 9 years ago

IE unlike other browsers sends focusin event to select (before click event) while click on the dropdown. So the trick is to check that the target of focusin event is not a dropdown.

mcaskill commented 9 years ago

@cah4a I hope you don't mind me making a pull request on your behalf.

cah4a commented 9 years ago

@mcaskill Any time) Do I need to add minified version?

vestman commented 9 years ago

Thanks a lot @mcaskill and @cah4a