PromiseProxyMixin#promise

promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:139 The promise whose fulfillment value is being proxied by this object. This property must be specified upon creation, and should not be changed once created. Example: Ember.ObjectProxy.extend(Ember.PromiseProxyMixin).create({ promise: <thenable> });

Component#didRender()

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

ember-application

ember-application Module Parent: ember The ApplicationInstance encapsulates all of the stateful aspects of a running Application. At a high-level, we break application boot into two distinct phases: Definition time, where all of the classes, templates, and other dependencies are loaded (typically in the browser). Run time, where we begin executing the application once everything has loaded. Definition time can be expensive and only needs to happen once since it is an idempotent operation. For

Inflector#singularize()

singularize (word) Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:222 Parameters: word String

PromiseProxyMixin#catch()

catch (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:177 Available since 1.3.0 An alias to the proxied promise's catch. See RSVP.Promise.catch. Parameters: callback Function Returns: RSVP.Promise

ProxyMixin

Ember.ProxyMixin Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/-proxy.js:43 Module: ember-runtime Ember.ProxyMixin forwards all properties not defined by the proxy itself to a proxied content object. See Ember.ObjectProxy for more details.

Registry

Registry Class PRIVATE Defined in: packages/container/lib/registry.js:9 Module: ember A registry used to store factory and option information keyed by type. A Registry stores the factory and option information needed by a Container to instantiate and cache objects. The API for Registry is still in flux and should not be considered stable.

Mixin#detect()

detect (obj) Booleanprivate Defined in packages/ember-metal/lib/mixin.js:586 Parameters: obj Returns: Boolean

DS.Model.eachRelatedType()

eachRelatedType (callback, binding) static Defined in addon/-private/system/relationships/ext.js:559 Given a callback, iterates over each of the types related to a model, invoking the callback with the related type's class. Each type will be returned just once, regardless of how many different relationships it has with a model. Parameters: callback Function the callback to invoke binding Any the value to which the callback's `this` should be bound

OrderedSet#toArray()

toArrayArrayprivate Defined in packages/ember-metal/lib/map.js:195 Returns: Array