Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dropkick does not work in Windows8, IE10 #76

Closed
HolyOne opened this issue Oct 13, 2012 · 6 comments
Closed

Dropkick does not work in Windows8, IE10 #76

HolyOne opened this issue Oct 13, 2012 · 6 comments

Comments

@HolyOne
Copy link

HolyOne commented Oct 13, 2012

In my windows 8, When I open the page I only see a simple dropdown menu. and it dont work :(
Any fixes?

@datajohnson
Copy link

On about line 16 of the .js file, it's checking for ie6 by by the first number in the browser version (which is "1" for IE10). I just switched it to this line: if ($.browser.msie &amp;&amp; $.browser.version.substr(0, 1) < 7 && ! $.browser.version.substring(0, 2) >= 10)

I didn't have IE6 to test how this works, so it seemed like a safe fix anyway.

@VasylMarchuk
Copy link

Actually, it should be:

parseInt($.browser.version.split('.',1), 10) < 7

@nym
Copy link

nym commented Feb 6, 2013

This really needs to get fixed ASAP.

@Korri
Copy link
Contributor

Korri commented Feb 11, 2013

Fixed it manually in my version, but please fix this !

@nicksteffens
Copy link

Just as a note $.browser has been removed in JQuery 1.9 http://api.jquery.com/jQuery.browser/

@Korri
Copy link
Contributor

Korri commented Apr 11, 2013

I personally simply removed ie6 support

@Robdel12 Robdel12 closed this as completed Sep 3, 2013
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants