DS.Model#didDelete event

didDelete Defined in addon/-private/system/model/model.js:451 Fired when the record is deleted.

Router#willTransition()

willTransitionpublic Defined in packages/ember-routing/lib/system/router.js:315 Available since 1.11.0 Handles notifying any listeners of an impending URL change. Triggers the router level willTransition hook.

DS.Model#transitionTo()

transitionTo (name) private Defined in addon/-private/system/model/model.js:490 Parameters: name String

DS.RecordArray

DS.RecordArray Class Extends: Ember.ArrayProxy Uses: Ember.Evented Defined in: addon/-private/system/record-arrays/record-array.js:12 Module: ember-data A record array is an array that contains records of a certain type. The record array materializes records as needed when they are retrieved for the first time. You should not create record arrays yourself. Instead, an instance of DS.RecordArray or its subclasses will be returned by your application's store in response to queries.

ApplicationInstance.BootOptions#location

locationstringpublic Defined in packages/ember-application/lib/system/application-instance.js:451 If present, overrides the router's location property with this value. This is useful for environments where trying to modify the URL would be inappropriate. Default: null

Transition

Transition Class PRIVATE Defined in: bower_components/router.js/lib/router/transition.js:4 Module: ember A Transition is a thennable (a promise-like object) that represents an attempt to transition to another route. It can be aborted, either explicitly via abort or by attempting another transition while a previous one is still underway. An aborted transition can also be retry()d later.

Ember.setProperties()

setProperties (obj, properties) public Defined in packages/ember-metal/lib/set_properties.js:4 Set a list of properties on an object. These properties are set inside a single beginPropertyChanges and endPropertyChanges batch, so observers will be buffered. let anObject = Ember.Object.create(); anObject.setProperties({ firstName: 'Stanley', lastName: 'Stuart', age: 21 }); Parameters: obj properties Object Returns: properties

Application#deferReadiness()

deferReadinesspublic Defined in packages/ember-application/lib/system/application.js:491 Use this to defer readiness until some condition is true. Example: let App = Ember.Application.create(); App.deferReadiness(); // Ember.$ is a reference to the jQuery object/function Ember.$.getJSON('/auth-token', function(token) { App.token = token; App.advanceReadiness(); }); This allows you to perform asynchronous setup logic and defer booting your application until the setup has finished. How

LinkComponent#disabled

disabledprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:530 Accessed as a classname binding to apply the LinkComponent's disabledClass CSS class to the element when the link is disabled. When true interactions with the element will not trigger route changes.

Ember.required()

requiredprivate Defined in packages/ember-metal/lib/mixin.js:650 Denotes a required property for a mixin