DS.RecordArray#_unregisterFromManager()

_unregisterFromManagerprivate Defined in addon/-private/system/record-arrays/record-array.js:206

ember

ember Module

HistoryLocation#replaceURL()

replaceURL (path) private Defined in packages/ember-routing/lib/location/history_location.js:105 Uses history.replaceState to update the url without a page reload or history modification. Parameters: path String

HistoryLocation#replaceState()

replaceState (path) private Defined in packages/ember-routing/lib/location/history_location.js:158 Replaces the current state. Parameters: path String

DS.RESTAdapter#deleteRecord()

deleteRecord (store, type, snapshot) Promise Inherited from DS.Adapter but overwritten in addon/adapters/rest.js:772 Called by the store when a record is deleted. The deleteRecord method makes an Ajax (HTTP DELETE) request to a URL computed by buildURL. Parameters: store DS.Store type DS.Model snapshot DS.Snapshot Returns: Promise promise

DS.RESTAdapter#findAll()

findAll (store, type, sinceToken, snapshotRecordArray) Promise Inherited from DS.Adapter but overwritten in addon/adapters/rest.js:439 Called by the store in order to fetch a JSON array for all of the records for a given type. The findAll method makes an Ajax (HTTP GET) request to a URL computed by buildURL, and returns a promise for the resulting payload. Parameters: store DS.Store type DS.Model sinceToken String snapshotRecordArray DS.SnapshotRecordArray Returns: Promise

DS.RecordArrayManager#unregisterRecordArray()

unregisterRecordArray (array) Defined in addon/-private/system/record-array-manager.js:329 Unregister a RecordArray. So manager will not update this array. Parameters: array DS.RecordArray

ControllerMixin#target

targetpublic Defined in packages/ember-runtime/lib/mixins/controller.js:16 The object to which actions from the view should be sent. For example, when a Handlebars template uses the {{action}} helper, it will attempt to send the action to the view's controller's target. By default, the value of the target property is set to the router, and is injected when a controller is instantiated. This injection is applied as part of the application's initialization process. In most cases the target pr

Application#didBecomeReady()

didBecomeReadyprivate Defined in packages/ember-application/lib/system/application.js:700

Ember.addListener()

addListener (obj, eventName, target, method, once) public Defined in packages/ember-metal/lib/events.js:70 Add an event listener Parameters: obj eventName String target Object|Function A target object or a function method Function|String A function or the name of a function to be called on `target` once Boolean A flag whether a function should only be called once