CoreObject#_scheduledDestroy()

_scheduledDestroyprivate Defined in packages/ember-runtime/lib/system/core_object.js:448 Invoked by the run loop to actually destroy the object. This is scheduled for execution by the destroy method.

ContainerDebugAdapter#catalogEntriesByType()

catalogEntriesByType (type) Arraypublic Defined in packages/ember-extension-support/lib/container_debug_adapter.js:80 Returns the available classes a given type. Parameters: type String The type. e.g. "model", "controller", "route". Returns: Array An array of strings.

Component#hasBlockParams

hasBlockParamspublic Defined in packages/ember-htmlbars/lib/component.js:258 Available since 1.13.0 Returns true when the component was invoked with a block parameter supplied. Example (hasBlockParams will be false): {{! templates/application.hbs }} {{#foo-bar}} No block parameter. {{/foo-bar}} {{! templates/components/foo-bar.hbs }} {{#if hasBlockParams}} This will not be printed, because no block was provided {{yield this}} {{/if}} Example (hasBlockParams will be true): {{! templ

DS.Store#init()

initprivate Defined in addon/-private/system/store.js:215

EachProxy

Ember.EachProxy Class PRIVATE Defined in: packages/ember-runtime/lib/system/each_proxy.js:16 Module: ember This is the object instance returned when you get the @each property on an array. It uses the unknownProperty handler to automatically create EachArray instances for property names.

Function#on()

onpublic Defined in packages/ember-runtime/lib/ext/function.js:162 The on extension of Javascript's Function prototype is available when EmberENV.EXTEND_PROTOTYPES or EmberENV.EXTEND_PROTOTYPES.Function is true, which is the default. You can listen for events simply by adding the on call to the end of your method declarations in classes or mixins that you write. For example: Ember.Mixin.create({ doSomethingWithElement: function() { // Executes whenever the "didInsertElement" event fir

Application#waitForDOMReady()

waitForDOMReadyprivate Defined in packages/ember-application/lib/system/application.js:424 Automatically kick-off the boot process for the application once the DOM has become ready. The initialization itself is scheduled on the actions queue which ensures that code-loading finishes before booting. If you are asynchronously loading code, you should call deferReadiness() to defer booting, and then call advanceReadiness() once all of your code has finished loading.

Component#willRender event

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

Ember.computed.oneWay()

oneWay (dependentKey) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/computed_macros.js:531 Where computed.alias aliases get and set, and allows for bidirectional data flow, computed.oneWay only provides an aliased get. The set will not mutate the upstream property, rather causes the current property to become the value set. This causes the downstream property to permanently diverge from the upstream property. Example let User = Ember.Object.extend({ firstName

PromiseProxyMixin#isPending

isPendingpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:103 Once the proxied promise has settled this will become false. Default: true