Detect route transitions in EmberJS 1.0.0-pre.4
问题 I am trying to detect when a route transition occurs. I've located this code snippet inside the latest version of Ember ( v1.0.0-pre.4 ) that handles the transitions: didTransition: function(infos) { // Don't do any further action here if we redirected if (infos[infos.length-1].handler.transitioned) { return; } var appController = this.container.lookup('controller:application'), path = routePath(infos); set(appController, 'currentPath', path); this.notifyPropertyChange('url'); if (get(this,