yemM / flippy

Flippy is a cross-browser flip effect plugin for jQuery which allows you to flip whatever html element you want. It now supports rgba colors
140 stars 98 forks source link

Internet Explorer 10 support #3

Closed Zauberfisch closed 11 years ago

Zauberfisch commented 11 years ago

I see you have

_isIE = (navigator.appName == "Microsoft Internet Explorer");
_isIE9 = (navigator.appVersion == "9.0");

when I visit the demo with a IE10 the flip does not work at all (the item just disappears)

from what I can see you treat IE9 different from older IEs, maybe this issue can be resolved by just changing _isIE9 to _isIE9orHigher for it is save to assume that IE10 has equal or better support for features existing in IE9

yemM commented 11 years ago

sure, I changed it :)