Route#_updatingQPChanged()

_updatingQPChangedprivate Defined in packages/ember-routing/lib/system/route.js:336

Route#_stashNames()

_stashNamesprivate Defined in packages/ember-routing/lib/system/route.js:295

Router#didTransition()

didTransitionpublic Defined in packages/ember-routing/lib/system/router.js:227 Available since 1.2.0 Handles updating the paths and notifying any listeners of the URL change. Triggers the router level didTransition hook. For example, to notify google analytics when the route changes, you could use this hook. (Note: requires also including GA scripts, etc.) let Router = Ember.Router.extend({ location: config.locationType, didTransition: function() { this._super(...arguments); r

Route#_names

_namesprivate Defined in packages/ember-routing/lib/system/route.js:288

Route#_activeQPChanged

_activeQPChangedprivate Defined in packages/ember-routing/lib/system/route.js:326

Route#_qp

_qpprivate Defined in packages/ember-routing/lib/system/route.js:144

Route#_optionsForQueryParam

_optionsForQueryParamprivate Defined in packages/ember-routing/lib/system/route.js:435

Route#transitionTo()

transitionTo (name, models, options) Transitionpublic Defined in packages/ember-routing/lib/system/route.js:886 Transition the application into another route. The route may be either a single route or route path: this.transitionTo('blogPosts'); this.transitionTo('blogPosts.recentEntries'); Optionally supply a model for the route in question. The model will be serialized into the URL using the serialize hook of the route: this.transitionTo('blogPost', aPost); If a literal is passed (such a

Route#willTransition event

willTransition (transition) public Defined in packages/ember-routing/lib/system/route.js:547 The willTransition action is fired at the beginning of any attempted transition with a Transition object as the sole argument. This action can be used for aborting, redirecting, or decorating the transition from the currently active routes. A good example is preventing navigation when a form is half-filled out: App.ContactFormRoute = Ember.Route.extend({ actions: { willTransition: function(tra

Route#templateName

templateNameStringpublic Defined in packages/ember-routing/lib/system/route.js:504 Available since 1.4.0 The name of the template to use by default when rendering this routes template. let PostsList = Ember.Route.extend({ templateName: 'posts/list' }); App.PostsIndexRoute = PostsList.extend(); App.PostsArchivedRoute = PostsList.extend(); Default: null