You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
implement the dependencyInjector interface in Firefox
The dependencies.js file defines the dependencyInjector interface. Through the dependencyInjector interface the UI frontend in the popup talks to freedom and retrieves its model. dependencyInjector must be implemented before the UI can function.
Some things that need to be resolved:
dependencies.js location
Find a home for the dependencies.js file in firefox. Right now we get an error in the console that says: No chrome package registered for chrome://uproxy-common/scripts/dependencies.js This is because popup.html looks for dependencies.js by going two directories up.
A path of chrome://uproxy-common/scripts/... isn't possible in Firefox because chrome urls are registered in the form chrome://name/(content|skin|locale)/...
We can either change the way popup.html finds the dependencies.js file or we can put popup.html deeper in the firefox directory structure.
Implement dependencyInjector
This may need to be done after the Typescript refactor.
The text was updated successfully, but these errors were encountered:
Issue by Paul-E from Wed Jan 15 22:47:19 2014
Originally opened as https://github.com/UWNetworksLab/UProxy/issues/154
implement the dependencyInjector interface in Firefox
The dependencies.js file defines the dependencyInjector interface. Through the dependencyInjector interface the UI frontend in the popup talks to freedom and retrieves its model. dependencyInjector must be implemented before the UI can function.
Some things that need to be resolved:
dependencies.js location
Find a home for the dependencies.js file in firefox. Right now we get an error in the console that says:
No chrome package registered for chrome://uproxy-common/scripts/dependencies.js
This is because popup.html looks for dependencies.js by going two directories up.A path of
chrome://uproxy-common/scripts/...
isn't possible in Firefox because chrome urls are registered in the formchrome://name/(content|skin|locale)/...
We can either change the way popup.html finds the dependencies.js file or we can put popup.html deeper in the firefox directory structure.
Implement dependencyInjector
This may need to be done after the Typescript refactor.
The text was updated successfully, but these errors were encountered: