This repository was archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27.4k
"SCRIPT16389: Unspecified error" from AngularJs in IE if no browser history #10367
Comments
Goshdarnit. I really need more IE devs to CC on these bugs to get some clarity on these issues. Unfortunately, this is difficult to write a test case for, even using the new e2e harness. |
caitp
added a commit
to caitp/angular.js
that referenced
this issue
Dec 8, 2014
Reportedly, MSIE can throw under certain conditions when fetching this attribute. Will confirm before landing. Fixes angular#10367
I have a Win8/IE11 machine so I can take a look.... |
hansmaad
pushed a commit
to hansmaad/angular.js
that referenced
this issue
Mar 10, 2015
Reportedly, MSIE can throw under certain conditions when fetching this attribute. We don't have a reliable reproduction for this but it doesn't do any real harm to wrap access to this variable in a try-catch block. Fixes angular#10367 Closes angular#10369
Any ETA on versión 1.3.15 where this fix is made? We are holding a new release of our product because this exact problem. It's likely hard to reproduce, but when it happens it makes the application unusable. |
We hope to do a release of 1.3.15 in the next day or two |
netman92
pushed a commit
to netman92/angular.js
that referenced
this issue
Aug 8, 2015
Reportedly, MSIE can throw under certain conditions when fetching this attribute. We don't have a reliable reproduction for this but it doesn't do any real harm to wrap access to this variable in a try-catch block. Fixes angular#10367 Closes angular#10369
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Angular version: 1.3.4
Browser version: Internet Explorer 10
In IE10 (may also occur in other versions of IE as well but haven't got easy access to other versions to test) then if a web application using AngularJs is the very first page loaded in the browser the following JavaScript error may occur:
SCRIPT16389: Unspecified error.
angular.js, line 4116 character 11
This is coming from the call to factory() in the following:
After further investigation I've found that this appears to be originating from the "cachedState = window.history.state;" statement in the following function.
This error does not occur if any other page has been visited prior to going to the page that uses AngularJs as window.history.state then no longer returns an error in IE.
Note that this error does not appear to occur when using Firefox or Chrome (as neither of these browsers raise an error when accessing window.history.state).
A try catch block on the window.history.state should fix this:
The text was updated successfully, but these errors were encountered: