mhulse / jquery-megawhale

Like Superfish, but for mega menus!
http://mhulse.github.io/jquery-megawhale/demo/
Apache License 2.0
2 stars 0 forks source link

Chrome menu touch issue #27

Open psullivan6 opened 11 years ago

psullivan6 commented 11 years ago

Issue: When hovering the menu items on Delta or Charlie, the menus don't open. After investigation, the html tag gets a touch class when it shouldn't because a desktop isn't technically a touch device.

Checks all Modernizr features: Modernizr Tester

Browser with the issue: Chrome Version 25.0.1364.172 m

Helpful articles: User Agent changing Modernizr issue

mhulse commented 11 years ago

I could swtich back to standard "click" (it's the touch detection that's the problem) and use:

https://github.com/dimsemenov/Magnific-Popup/blob/master/src/js/fastclick.js

Need to test.

mhulse commented 11 years ago

Possibly an alternative to using FastClick JS:

http://stackoverflow.com/questions/3885018/active-pseudo-class-doesnt-work-in-mobile-safari

<body ontouchstart="">
    ...
</body>

Need to investigate.