Container#owner

ownerObjectprivate Defined in packages/container/lib/container.js:35

AriaRoleSupport#ariaRole

ariaRoleStringpublic Defined in packages/ember-views/lib/mixins/aria_role_support.js:14 The WAI-ARIA role of the control represented by this view. For example, a button may have a role of type 'button', or a pane may have a role of type 'alertdialog'. This property is used by assistive software to help visually challenged users navigate rich web applications. The full list of valid WAI-ARIA roles is available at: http://www.w3.org/TR/wai-aria/roles#roles_categorization Default: null

Binding#disconnect()

disconnectEmber.Bindingpublic Defined in packages/ember-metal/lib/binding.js:196 Disconnects the binding instance. Changes will no longer be relayed. You will not usually need to call this method. Returns: Ember.Binding `this`

DS.ManyArray#loadingRecordsCount()

loadingRecordsCount (count) private Defined in addon/-private/system/many-array.js:215 Parameters: count Number

DS.Snapshot#adapterOptions

adapterOptions{Object} Defined in addon/-private/system/snapshot.js:33 A hash of adapter options

Container#cache

cacheInheritingDictprivate Defined in packages/container/lib/container.js:50

PromiseProxyMixin#then()

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

ObjectProxy

Ember.ObjectProxy Class PUBLIC Extends: Ember._ProxyMixin Defined in: packages/ember-runtime/lib/system/object_proxy.js:4 Module: ember Ember.ObjectProxy forwards all properties not defined by the proxy itself to a proxied content object. object = Ember.Object.create({ name: 'Foo' }); proxy = Ember.ObjectProxy.create({ content: object }); // Access and change existing properties proxy.get('name') // 'Foo' proxy.set('name', 'Bar'); object.get('name') // 'Bar' // Crea

Ember.FEATURES

Ember.FEATURES Namespace PUBLIC Defined in: packages/ember-metal/lib/features.js:5 Module: ember The hash of enabled Canary features. Add to this, any canary features before creating your application. Alternatively (and recommended), you can also define EmberENV.FEATURES if you need to enable features flagged at runtime.

Observable#notifyPropertyChange()

notifyPropertyChange (keyName) Ember.Observablepublic Defined in packages/ember-runtime/lib/mixins/observable.js:318 Convenience method to call propertyWillChange and propertyDidChange in succession. Parameters: keyName String The property key to be notified about. Returns: Ember.Observable