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

Ember.controllerFor()

controllerForprivate Defined in packages/ember-routing/lib/system/controller_for.js:6 Finds a controller instance.

Date

Ember.Date Namespace DEPRECATED Defined in: addon/-private/ext/date.js:9 Module: ember-data Date.parse with progressive enhancement for ISO 8601 https://github.com/csnover/js-iso8601 © 2011 Colin Snover http://zetafleet.com Released under MIT license.

ComputedProperty#property()

property (path) Ember.ComputedPropertypublic Defined in packages/ember-metal/lib/computed.js:220 Sets the dependent keys on this computed property. Pass any number of arguments containing key paths that this computed property depends on. let President = Ember.Object.extend({ fullName: Ember.computed(function() { return this.get('firstName') + ' ' + this.get('lastName'); // Tell Ember that this computed property depends on firstName // and lastName }).property('firstName', '

DS.Store#_dematerializeRecord()

_dematerializeRecord (internalModel) private Defined in addon/-private/system/store.js:2342 When a record is destroyed, this un-indexes it and removes it from any record arrays so it can be GCed. Parameters: internalModel InternalModel

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.

DS.Model#currentState

currentState{Object}private Defined in addon/-private/system/model/model.js:303

DS.Store#adapter

adapter{(DS.Adapter|String)} Defined in addon/-private/system/store.js:233 The adapter to use to communicate to a backend server or other persistence layer. This can be specified as an instance, class, or string. If you want to specify app/adapters/custom.js as a string, do: adapter: 'custom' Default: DS.JSONAPIAdapter

Map#size

sizenumberprivate Defined in packages/ember-metal/lib/map.js:266 Available since 1.8.0 This property will change as the number of objects in the map changes. Default: 0