3
Guys, I’m making an embedded application in Angularjs that when the system (operating, not the application) starts, it opens the index.html that contains the application made in angular.
The front page works, but how do I send it to another page ?
I tried using routes, but how it runs in protocol file:// i don’t have a context where I can do /otherapy.
How can I display another page with another controller?
Your application will run on the file protocol or this is just for development?
– Jéf Bueno
It will run on file protocol.
– Paulo Gustavo
I think the first problem there is to see which browser will be used, because the protocol
file://
is not well standardized, each browser has its own rules for it– Leandro Godoy Rosa
It will be run in Qtwebkit. We even had problems with CORS but we were able to configure it in qtwebkit.
– Paulo Gustavo
I made it work using the good old window.location.href. The problem with that, my template doesn’t work..
– Paulo Gustavo