Mixin.create()

create (arguments) publicstatic Defined in packages/ember-metal/lib/mixin.js:503 Parameters: arguments

Binding#oneWay()

oneWayEmber.Bindingpublic Defined in packages/ember-metal/lib/binding.js:106 Configures the binding as one way. A one-way binding will relay changes on the from side to the to side, but not the other way around. This means that if you change the to side directly, the from side may have a different value. Returns: Ember.Binding `this`

MutableArray#clear()

clearEmber.Arraypublic Defined in packages/ember-runtime/lib/mixins/mutable_array.js:87 Remove all elements from the array. This is useful if you want to reuse an existing array without having to recreate it. let colors = ['red', 'green', 'blue']; color.length(); // 3 colors.clear(); // [] colors.length(); // 0 Returns: Ember.Array An empty Array.

DS.Model#didCreate event

didCreate Defined in addon/-private/system/model/model.js:444 Fired when a new record is commited to the server.

Service

Ember.Service Class PUBLIC Extends: Ember.Object Defined in: packages/ember-runtime/lib/system/service.js:35 Module: ember

Component#didRender event

didRenderpublic Defined in packages/ember-htmlbars/lib/component.js:385 Available since 1.13.0 Called after a component has been rendered, both on initial render and in subsequent rerenders.

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

Container#destroy()

destroyprivate Defined in packages/container/lib/container.js:136 A depth first traversal, destroying the container, its descendant containers and all their managed objects.

DS.AdapterPopulatedRecordArray#loadRecords()

loadRecords (records, payload) private Defined in addon/-private/system/record-arrays/adapter-populated-record-array.js:65 Parameters: records Array payload Object normalized payload

Freezable#isFrozen

isFrozenBooleanprivate Defined in packages/ember-runtime/lib/mixins/freezable.js:80 Set to true when the object is frozen. Use this property to detect whether your object is frozen or not.