CoreObject#_lazyInjections()

_lazyInjectionsObjectprivate Defined in packages/ember-runtime/lib/system/core_object.js:890 Returns a hash of property names and container names that injected properties will lookup on the container lazily. Returns: Object Hash of all lazy injected property keys to container names

LinkComponent#title

titlepublic Defined in packages/ember-htmlbars/lib/components/link-to.js:364 Sets the title attribute of the LinkComponent's HTML element. Default: null

DS.Errors#messages

messages{Array} Defined in addon/-private/system/model/errors.js:158 An array containing all of the error messages for this record. This is useful for displaying all errors to the user. {{#each model.errors.messages as |message|}} <div class="error"> {{message}} </div> {{/each}}

DS.Store#queryRecord()

queryRecord (modelName, query) Promise Defined in addon/-private/system/store.js:1151 Available since 1.13.0 This method makes a request for one record, where the id is not known beforehand (if the id is known, use findRecord instead). This method can be used when it is certain that the server will return a single object for the primary data. Let's assume our API provides an endpoint for the currently logged in user via: // GET /api/current_user { user: { id: 1234, username: 'admi

Ember.removeBeforeObserver()

removeBeforeObserver (obj, path, target, method) deprecatedprivate Defined in packages/ember-metal/lib/observer.js:93 Parameters: obj path String target Object|Function method [Function|String]

Templates.helpers.action()

actionpublic Defined in packages/ember-htmlbars/lib/keywords/action.js:9 The {{action}} helper provides a way to pass triggers for behavior (usually just a function) between components, and into components from controllers. Passing functions with the action helper There are three contexts an action helper can be used in. The first two contexts to discuss are attribute context, and Handlebars value context. {{! An example of attribute context }} <div onclick={{action "save"}}></div&

DefaultResolver#resolveTemplate()

resolveTemplate (parsedName) protected Defined in packages/ember-application/lib/system/resolver.js:301 Look up the template in Ember.TEMPLATES Parameters: parsedName Object a parseName object with the parsed fullName lookup string

Application#domReady()

domReadyprivate Defined in packages/ember-application/lib/system/application.js:446 This is the autoboot flow: Boot the app by calling this.boot() Create an instance (or use the __deprecatedInstance__ in globals mode) Boot the instance by calling instance.boot() Invoke the App.ready() callback Kick-off routing on the instance Ideally, this is all we would need to do: _autoBoot() { this.boot().then(() => { let instance = (this._globalsMode) ? this.__deprecatedInstance__ : this.bui

DS.Model#didUpdate event

didUpdate Defined in addon/-private/system/model/model.js:437 Fired when the record is updated.

Ember.required()

requiredprivate Defined in packages/ember-metal/lib/mixin.js:650 Denotes a required property for a mixin