-
Notifications
You must be signed in to change notification settings - Fork 145
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
Latest version (1.0.9) fails on IE10 and below #73
Comments
Please take me off your list
|
Ack sorry, I'm new to Github. Which list? |
I'm seeing this issue as well. |
Demo site works (it's using v1.0.3), but the following test for IE in v1.0.9 fails:
if ( /msie/.test(navigator.userAgent.toLowerCase()) && parseInt(navigator.appVersion,10) <= 6)
because parseInt(navigator.appVersion,10) does not return the version number.
Check out the discussion here http://stackoverflow.com/a/15983064 (their test for IE version won't work for IE11, but that's fine because your plugin only needed to test for older IE).
p.s. Thanks for a great plugin.
The text was updated successfully, but these errors were encountered: