Inflector#singular()

singular (regex, string) Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:182 Parameters: regex RegExp string String

RegistryProxyMixin#inject()

inject (factoryNameOrType, property, injectionName) public Defined in packages/ember-runtime/lib/mixins/registry_proxy.js:203 Define a dependency injection onto a specific factory or all factories of a type. When Ember instantiates a controller, view, or other framework component it can attach a dependency to that component. This is often used to provide services to a set of framework components. An example of providing a session object to all controllers: let App = Ember.Application.create

DS.Model#dirtyType

dirtyType{String} Defined in addon/-private/system/model/model.js:222 If the record is in the dirty state this property will report what kind of change has caused it to move into the dirty state. Possible values are: created The record has been created by the client and not yet saved to the adapter. updated The record has been updated by the client and not yet saved to the adapter. deleted The record has been deleted by the client and not yet saved to the adapter. Example var record = st

Ember.computed.reads()

reads (dependentKey) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/computed_macros.js:568 This is a more semantically meaningful alias of computed.oneWay, whose name is somewhat ambiguous as to which direction the data flows. Parameters: dependentKey String Returns: Ember.ComputedProperty computed property which creates a one way computed property to the original value for property.

RSVP.rethrow()

rethrow (reason) static Defined in bower_components/rsvp/lib/rsvp/rethrow.js:1 RSVP.rethrow will rethrow an error on the next turn of the JavaScript event loop in order to aid debugging. Promises A+ specifies that any exceptions that occur with a promise must be caught by the promises implementation and bubbled to the last handler. For this reason, it is recommended that you always specify a second rejection handler function to then. However, RSVP.rethrow will throw the exception outside of

DS.RecordArray#addInternalModel()

addInternalModel (internalModel, an) private Defined in addon/-private/system/record-arrays/record-array.js:142 Adds an internal model to the RecordArray without duplicates Parameters: internalModel InternalModel an Number optional index to insert at

DS.SnapshotRecordArray#snapshots()

snapshotsArray Defined in addon/-private/system/snapshot-record-array.js:56 Get snapshots of the underlying record array Returns: Array Array of snapshots

Error#deprecateProperty()

deprecateProperty (object, deprecatedKey, newKey) private Defined in packages/ember-metal/lib/deprecate_property.js:11 Available since 1.7.0 Used internally to allow changing properties in a backwards compatible way, and print a helpful deprecation warning. Parameters: object Object The object to add the deprecated property to. deprecatedKey String The property to add (and print deprecation warnings upon accessing). newKey String The property that will be aliased.

Map#forEach()

forEach (callback, self) private Defined in packages/ember-metal/lib/map.js:359 Iterate over all the keys and values. Calls the function once for each key, passing in value, key, and the map being iterated over, in that order. The keys are guaranteed to be iterated over in insertion order. Parameters: callback Function self * if passed, the `this` value inside the callback. By default, `this` is the map.

ViewTargetActionSupport#findElementInParentElement()

findElementInParentElement (parentElement) DOMElementprivate Defined in packages/ember-views/lib/mixins/view_support.js:280 Attempts to discover the element in the parent element. The default implementation looks for an element with an ID of elementId (or the view's guid if elementId is null). You can override this method to provide your own form of lookup. For example, if you want to discover your element using a CSS class name instead of an ID. Parameters: parentElement DOMElement Th