Hi All!
I am working on a project that requires the functionality of loading separate widgets/apps at a later time than at the initial parent ember application kickoff. I want the separate apps to function as standalone ember application while also being able to loaded into the main application. Since I are unable to nest ember applications, I decided to use a subset of the ember functionality and eval the views, controllers, and templates when I request them. However these widgets (also functioning as a standalone ember app) have their own routes and data adapters that load controllers and associate them to views. What would be the best way to put the embedded routes into the main application’s router and use a separate data adapter for them?
Alternatively does anyone know a way to nest ember apps?