HTMLBars#_registerHelper()

_registerHelper (name, keyword) private Inherited from Ember.HTMLBars but overwritten in packages/ember-htmlbars/lib/keywords.js:19 Parameters: name String keyword Object|Function The keyword to add.

Observers

Observers Ember supports observing any property, including computed properties. Observers should contain behavior that reacts to changes in another property. Observers are especially useful when you need to perform some behavior after a binding has finished synchronizing. Observers are often over-used by new Ember developers. Observers are used heavily within the Ember framework itself, but for most problems Ember app developers face, computed properties are the appropriate solution. You can

Test.Adapter#asyncEnd()

asyncEndpublic Defined in packages/ember-testing/lib/adapters/adapter.js:30 This callback will be called whenever an async operation has completed.

Route#enter()

enterprivate Defined in packages/ember-routing/lib/system/route.js:493

Application

Ember.Application Class PUBLIC Extends: Ember.Engine Uses: RegistryProxyMixin Defined in: packages/ember-application/lib/system/application.js:45 Module: ember-application An instance of Ember.Application is the starting point for every Ember application. It helps to instantiate, initialize and coordinate the many objects that make up your app. Each Ember app has one and only one Ember.Application object. In fact, the very first thing you should do in your application is create the instanc

OrderedSet#copy()

copyEmber.OrderedSetprivate Defined in packages/ember-metal/lib/map.js:204 Returns: Ember.OrderedSet

DS.Model.eachTransformedAttribute()

eachTransformedAttribute (callback, binding) static Defined in addon/-private/system/model/attr.js:170 Iterates through the transformedAttributes of the model, calling the passed function on each attribute. Note the callback will not be called for any attributes that do not have an transformation type. The callback method you provide should have the following signature (all parameters are optional): function(name, type); name the name of the current property in the iteration type a strin

DS.JSONAPISerializer#payloadKeyFromModelName()

payloadKeyFromModelName (modelName) String Defined in addon/serializers/json-api.js:360 Parameters: modelName String Returns: String

DS.Store#dataWasUpdated()

dataWasUpdated (type, internalModel) private Defined in addon/-private/system/store.js:1666 If the adapter updates attributes the record will notify the store to update its membership in any filters. To avoid thrashing, this method is invoked only once per run loop per record. Parameters: type Class internalModel InternalModel

DS.Store#findBelongsTo()

findBelongsTo (owner, link, relationship) Promiseprivate Defined in addon/-private/system/store.js:1059 Parameters: owner DS.Model link Any relationship Relationship Returns: Promise promise