cljsinfo / cljs.info

ClojureScript website
http://cljs.info
MIT License
96 stars 9 forks source link

cheatsheet: IE tooltip flicker bug #11

Closed oakmac closed 9 years ago

oakmac commented 9 years ago

IE fires the mouseleave event while the mouse cursor is still inside the tooltip icon, causing a very distracting flicker effect. I think this has something to do with the :after pseudo elements that Font Awesome is using.

Maybe capture x/y coords of everything on mouseenter and listen to mousemove on the body to determine whether to hide?

Another idea would be to just use an image.

oakmac commented 9 years ago

Still need to test this on a Windows machine, but pretty sure this last commit will have fixed the issue.

comamitc commented 9 years ago

I can test this. let me know what expected output is. On Nov 15, 2014 9:16 PM, "Chris Oakman" notifications@github.com wrote:

Still need to test this on a Windows machine, but pretty sure this last commit will have fixed the issue.

— Reply to this email directly or view it on GitHub https://github.com/oakmac/clojurescript.info/issues/11#issuecomment-63202461 .

oakmac commented 9 years ago

@comamitc expected output is: "tooltips behave as expected and are smooth in all browsers"

oakmac commented 9 years ago

this is fixed now