DS.JSONSerializer#extractId()

extractId (modelClass, resourceHash) String Defined in addon/serializers/json.js:550 Returns the resource's ID. Parameters: modelClass Object resourceHash Object Returns: String

Component#didUpdateAttrs event

didUpdateAttrspublic Defined in packages/ember-htmlbars/lib/component.js:423 Available since 1.13.0 Called when the attributes passed into the component have been changed. Called only during a rerender, not during an initial render.

EngineInstance#unregister()

unregister (fullName) public Inherited from RegistryProxyMixin but overwritten in packages/ember-application/lib/system/engine-instance.js:118 Unregister a factory. Overrides RegistryProxy#unregister in order to clear any cached instances of the unregistered factory. Parameters: fullName String

HashLocation#getHash()

getHashprivate Defined in packages/ember-routing/lib/location/hash_location.js:32 Available since 1.5.1

HistoryLocation#setURL()

setURL (path) private Defined in packages/ember-routing/lib/location/history_location.js:89 Uses history.pushState to update the url without a page reload. Parameters: path String

Instrumentation#unsubscribe()

unsubscribe (subscriber) private Defined in packages/ember-metal/lib/instrumentation.js:216 Unsubscribes from a particular event or instrumented block of code. Parameters: subscriber [Object]

Inflector#inflect()

inflect (word, typeRules, irregular) protected Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:234 Parameters: word String typeRules Object irregular Object

DS.Model#hasDirtyAttributes

hasDirtyAttributes{Boolean} Defined in addon/-private/system/model/model.js:101 Available since 1.13.0 If this property is true the record is in the dirty state. The record has local changes that have not yet been saved by the adapter. This includes records that have been created (but not yet saved) or deleted. Example var record = store.createRecord('model'); record.get('hasDirtyAttributes'); // true store.findRecord('model', 1).then(function(model) { model.get('hasDirtyAttributes'); //

Mixin#reopen()

reopen (arguments) private Defined in packages/ember-metal/lib/mixin.js:518 Parameters: arguments

RegistryProxyMixin#register()

register (fullName, factory, options) public Defined in packages/ember-runtime/lib/mixins/registry_proxy.js:29 Registers a factory that can be used for dependency injection (with inject) or for service lookup. Each factory is registered with a full name including two parts: type:name. A simple example: let App = Ember.Application.create(); App.Orange = Ember.Object.extend(); App.register('fruit:favorite', App.Orange); Ember will resolve factories from the App namespace automatically. For