We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
falls in ie7-8
https://github.com/angular-ui/router/blob/ui-states/src/urlMatcherFactory.js#L76 https://github.com/angular-ui/router/blob/ui-states/src/urlMatcherFactory.js#L77
while ((m = placeholder.exec(pattern))) { id = (m[1] != null) ? m[1] : m[2]; regexp = (m[3] != null) ? m[3] : '[^/]*';
(m[3] != null) works differently in ie7-8 and other browsers ...
(m[3] != null)
The text was updated successfully, but these errors were encountered:
Workaround for regexp.exec() returning '' for unmatched captures on I…
6b39f5d
…E (see #24)
Should be fixed now, can you please retest.
Sorry, something went wrong.
Yup - now it works. IE7&8 have another problems with deeply nested views - will investigate later..
No branches or pull requests
falls in ie7-8
https://github.com/angular-ui/router/blob/ui-states/src/urlMatcherFactory.js#L76
https://github.com/angular-ui/router/blob/ui-states/src/urlMatcherFactory.js#L77
(m[3] != null)
works differently in ie7-8 and other browsers ...The text was updated successfully, but these errors were encountered: