This repository has been 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.5k
$location broken for packaged FirefoxOS App-URLs #2112
Comments
Schibum
added a commit
to Schibum/angular.js
that referenced
this issue
Mar 7, 2013
FirefoxOS uses special URLs like app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html for packaged Apps. Closes angular#2112
according to my information the url looks more like can you point me to some spec that specifies the url format? this is what I looked at: |
I don't know about the specs but I installed a packaged app on my test |
mhevery
pushed a commit
to mhevery/angular.js
that referenced
this issue
Mar 16, 2013
FirefoxOS uses special URLs like app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html for packaged Apps. Closes angular#2112
See also this Firefox OS bug for reference: https://bugzilla.mozilla.org/show_bug.cgi?id=845344 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
FirefoxOS uses special URLs like
app://{d0419af1-8b42-41c5-96f4-ef4179e52315}/index.html
for packaged Apps.The current URL_MATCH regexp in ng/location.js does not recognize such URLs which causes an error in matchURL() that effectively breaks bootstrapping.
Adding {} to the host-capture clause of the regular expression fixes this. I.e. changing
to:
The text was updated successfully, but these errors were encountered: