Observable#addObserver()

addObserver (key, target, method) public Defined in packages/ember-runtime/lib/mixins/observable.js:333 Adds an observer on a property. This is the core method used to register an observer for a property. Once you call this method, any time the key's value is set, your observer will be notified. Note that the observers are triggered any time the value is set, regardless of whether it has actually changed. Your observer should be prepared to handle that. You can also pass an optional context

Route#paramsFor()

paramsFor (name) public Defined in packages/ember-routing/lib/system/route.js:347 Retrieves parameters, for current route using the state.params variable and getQueryParamsFor, using the supplied routeName. Parameters: name String

Ember.removeListener()

removeListener (obj, eventName, target, method) public Defined in packages/ember-metal/lib/events.js:112 Remove an event listener Arguments should match those passed to Ember.addListener. Parameters: obj eventName String target Object|Function A target object or a function method Function|String A function or the name of a function to be called on `target`

Ember.meta()

meta (obj, writable) Objectprivate Defined in packages/ember-metal/lib/meta.js:360 Retrieves the meta hash for an object. If writable is true ensures the hash is writable for this object as well. The meta object contains information about computed property descriptors as well as any watched properties and other information. You generally will not access this information directly but instead work with higher level methods that manipulate this hash indirectly. Parameters: obj Object The

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

String#capitalize()

capitalize (str) Stringpublic Defined in packages/ember-runtime/lib/system/string.js:319 Returns the Capitalized form of a string 'innerHTML'.capitalize() // 'InnerHTML' 'action_name'.capitalize() // 'Action_name' 'css-class-name'.capitalize() // 'Css-class-name' 'my favorite items'.capitalize() // 'My favorite items' 'privateDocs/ownerInvoice'.capitalize(); // 'PrivateDocs/ownerInvoice' Parameters: str String The string to capitalize. Returns: String The capita

DS.Snapshot#modelName

modelName{String} Defined in addon/-private/system/snapshot.js:86 The name of the type of the underlying record for this snapshot, as a string.

DS.AdapterPopulatedRecordArray

DS.AdapterPopulatedRecordArray Class Extends: DS.RecordArray Defined in: addon/-private/system/record-arrays/adapter-populated-record-array.js:12 Module: ember-data Represents an ordered list of records whose order and membership is determined by the adapter. For example, a query sent to the adapter may trigger a search on the server, whose results would be loaded into an instance of the AdapterPopulatedRecordArray. If you want to update the array and get the latest records from the adapt

TextField#min

minStringpublic Defined in packages/ember-htmlbars/lib/components/text_field.js:144 Available since 1.4.0 The min attribute of input element used with type="number" or type="range". Default: null

Application#rootElement

rootElementDOMElementpublic Defined in packages/ember-application/lib/system/application.js:204 The root DOM element of the Application. This can be specified as an element or a jQuery-compatible selector string. This is the element that will be passed to the Application's, eventDispatcher, which sets up the listeners for event delegation. Every view in your application should be a child of the element you specify here. Default: 'body'