-
Notifications
You must be signed in to change notification settings - Fork 3k
UI-router issue with IE8 #452
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
Comments
This is not quite fixed - on IE8, with |
I have the same problem on IE8, so I just removed the test on (e.which == 1) to have it working correctly for the time being. I'm in favor of not always adding code for old IE versions, but I still often need to do IE8 compatible websites for customers that are still on XP, so I do require this kind of support for a little longer :) |
I agree with plopinou - the less fortunate of us still have to support IE7 and IE8. |
This is fixed by #617. |
@Voles - much appreciated. |
XP will likely be around for longer with big corps paying for patches. |
Microsoft will end support for Windows XP on April 8th. |
UI-router does not work with IE 8 when I have a button markup like the one below
When I click on the button nothing happens. It works in chrome ,IE9 and IE10 but not in IE8.
It seems the issue is with e.which in below code in angular-ui-router.js.
IE8 doesnot provide any value to e.which and it defaults to 0 and is causing issue.
The text was updated successfully, but these errors were encountered: