Transition#followRedirects()

followRedirectsPromisepublic Defined in bower_components/router.js/lib/router/transition.js:272 Transitions are aborted and their promises rejected when redirects occur; this method returns a promise that will follow any redirects that occur and fulfill with the value fulfilled by any redirecting transitions that occur. Returns: Promise a promise that fulfills with the same value that the final redirecting transition fulfills with

Ember.removeObserver()

removeObserver (obj, path, target, method) public Defined in packages/ember-metal/lib/observer.js:47 Parameters: obj path String target Object|Function method [Function|String]

Comparable

Ember.Comparable Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/comparable.js:8 Module: ember-runtime Implements some standard methods for comparing objects. Add this mixin to any class you create that can compare its instances. You should implement the compare() method.

Instrumentation#reset()

resetprivate Defined in packages/ember-metal/lib/instrumentation.js:238 Resets Ember.Instrumentation by flushing list of subscribers.

Computed Properties and Aggregate Data

Computed Properties and Aggregate Data Sometimes you have a computed property whose value depends on the properties of items in an array. For example, you may have an array of todo items, and want to calculate the incomplete todo's based on their isDone property. To facilitate this, Ember provides the @each key illustrated below: app/components/todo-list.js export default Ember.Component.extend({ todos: null, init() { this.set('todos', [ Ember.Object.create({ isDone: true }),

ViewTargetActionSupport#tagName

tagNameStringpublic Defined in packages/ember-views/lib/mixins/view_support.js:367 Tag name for the view's outer element. The tag name is only used when an element is first created. If you change the tagName for an element, you must destroy and recreate the view element. By default, the render buffer will use a <div> tag for views. Default: null

Route#_optionsForQueryParam

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

DS.ConflictError

DS.ConflictError Class Defined in: addon/adapters/errors.js:154 Module: ember-data

Transition#promise

promise{Object}public Defined in bower_components/router.js/lib/router/transition.js:108 The Transition's internal promise. Calling .then on this property is that same as calling .then on the Transition object itself, but this property is exposed for when you want to pass around a Transition's promise, but not the Transition object itself, since Transition object can be externally aborted, while the promise cannot.

HistoryLocation#getHash()

getHashprivate Defined in packages/ember-routing/lib/location/history_location.js:233