Component#didUpdate event

didUpdatepublic Defined in packages/ember-htmlbars/lib/component.js:461 Available since 1.13.0 Called when the component has updated and rerendered itself. Called only during a rerender, not during an initial render.

DS.PromiseManyArray

DS.PromiseManyArray Class Extends: Ember.ArrayProxy Defined in: addon/-private/system/promise-proxies.js:81 Module: ember-data A PromiseManyArray is a PromiseArray that also proxies certain method calls to the underlying manyArray. Right now we proxy: reload() createRecord() on() one() trigger() off() has()

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

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

Registry#fallback

fallbackRegistryprivate Defined in packages/container/lib/registry.js:50 A backup registry for resolving registrations when no matches can be found.

Enumerable#enumerableContentDidChange()

enumerableContentDidChange (removing, adding) private Defined in packages/ember-runtime/lib/mixins/enumerable.js:992 Invoke this method when the contents of your enumerable has changed. This will notify any observers watching for content changes. If you are implementing an ordered enumerable (such as an array), also pass the start and end values where the content changed so that it can be used to notify range observers. Parameters: removing Ember.Enumerable|Number An enumerable of the

ember-glimmer

ember-glimmer Module Parent: ember

Binding

Ember.Binding Class DEPRECATED PUBLIC Defined in: packages/ember-metal/lib/binding.js:353 Module: ember-metal An Ember.Binding connects the properties of two objects so that whenever the value of one property changes, the other property will be changed also. Automatic Creation of Bindings with /^*Binding/-named Properties. You do not usually create Binding objects directly but instead describe bindings in your class or object definition using automatic binding detection. Properties ending