AriaRoleSupport

Ember.AriaRoleSupport Class PRIVATE Defined in: packages/ember-views/lib/mixins/aria_role_support.js:8 Module: ember-views

NoneLocation#rootURL

rootURLprivate Defined in packages/ember-routing/lib/location/none_location.js:33 Will be pre-pended to path. Default: '/'

DS.Store#push()

push (data) DS.Model|Array Defined in addon/-private/system/store.js:1962 Push some data for a given type into the store. This method expects normalized JSON API document. This means you have to follow JSON API specification with few minor adjustments: - record's type should always be in singular, dasherized form - members (properties) should be camelCased Your primary data should be wrapped inside data property: store.push({ data: { // primary data for single record of type `Person`

Router#reset()

resetprivate Defined in packages/ember-routing/lib/system/router.js:444 Resets the state of the router by clearing the current route handlers and deactivating them.

Application#buildInstance()

buildInstanceEmber.ApplicationInstanceprivate Inherited from Ember.Engine but overwritten in packages/ember-application/lib/system/application.js:367 Create an ApplicationInstance for this application. Returns: Ember.ApplicationInstance the application instance

Ember.watch()

watch (obj, _keyPath) private Defined in packages/ember-metal/lib/watching.js:24 Starts watching a property on an object. Whenever the property changes, invokes Ember.propertyWillChange and Ember.propertyDidChange. This is the primitive used by observers and dependent keys; usually you will never call this method directly but instead use higher level methods like Ember.addObserver() Parameters: obj _keyPath String

Feature Flags

Feature Flags New features are added to Ember.js within conditional statements. Code behind these flags can be conditionally enabled (or completely removed) based on your project's configuration. This allows newly developed features to be selectively released when the Ember.js community considers them ready for production use. Feature Life-Cycle A newly-flagged feature is only available in canary builds and can be enabled at runtime through your project's configuration file. At the start of a

Ember.VERSION

VERSIONStringpublic Defined in packages/ember-metal/lib/index.js:308 The semantic version

Ember.GUID_PREFIX

GUID_PREFIXStringprivateconstant Defined in packages/ember-metal/lib/utils.js:30 Prefix used for guids through out Ember.

Ember.computed.union()

union (propertyKey) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/reduce_computed_macros.js:426 Alias for Ember.computed.uniq. Parameters: propertyKey String Returns: Ember.ComputedProperty computes a new array with all the unique elements from the dependent array