After a
window.App = Ember.Application.create
how can I address the automatically created instances of the router, controllers? I've found several posts stating that a
App.LoginController = Ember.Controller.extend ...
should result in an instantiated
App.loginController
on the app - but this does no longer seem to be the case with 1.0.0-PRE.4.
I tried several things like
App.router // undefined
App.get("router") // undefined
App.get("router.loginController") // undefined
App.get("router.login") // undefined
App.get("loginController") // undefined
...
but nothing seems to work.
App.defaultRouter()
is actually a function that creates a new, empty router: but not the one I defined using
App.Router.map (match)->
...
I'm trying to get a handle to look into the running app in chrome, and also need to pass in a variable into a controller from an asynchronous running call outside ember (a facebook lookup to check if the user is already logged in) - so any hint how I can peek&poke into ember from outside is more than welcome!!
PS: And please can somebody create the version-tags for ember: With all the API-changes, the most difficult thing for a newbie is currently to find out if an answer actually applies to the current version of ember or if it is already outdated: A tag indicating in which version the answer actually works would be really helpful ...