flexnav icon indicating copy to clipboard operation
flexnav copied to clipboard

doesnt work on winx64 IE10

Open SiteSplat opened this issue 11 years ago • 4 comments

The mobile view is broken on IE10. I tested it from the demo page.

ANy idea?

Thx

SiteSplat avatar Feb 04 '14 15:02 SiteSplat

If you mean the menu items are separated by quite a few pixels, I solved it by specifying the display method for the li element.

.flexnav li { display:block; }

There are quite a few more things that don't work properly though. The first click on every item-with-ul element doesn't initiate the opening animation.

Aidoru75 avatar Feb 19 '14 09:02 Aidoru75

Hi yest that was the main issue on IE. Thanks for the fix. Not sure why it is marked as supported for IE when it's clearly not working as it should.

SiteSplat avatar Feb 19 '14 13:02 SiteSplat

I guess that's because the extended version actually works fine. The issues are only visible in the compact version... although I'm not sure whether it works on windows phones because I don't own one :-)

Aidoru75 avatar Feb 19 '14 14:02 Aidoru75

Ok i got solution last code with focus on jquery file does that for me its not needed at all when focus someone so i just comment it and menu work same as on other browser

Or use instead of .focus() - .triggerHandler( "focus") and it works too

by the way from jquery site .focus() "Attempting to set focus to a hidden element causes an error in Internet Explorer. Take care to only use .focus() on elements that are visible. To run an element's focus event handlers without setting focus to the element, use .triggerHandler( "focus" ) instead of .focus()."

Szymon-dziewonski avatar Dec 08 '14 21:12 Szymon-dziewonski