DefaultResolver#_logLookup()

_logLookup (found, parsedName) private Defined in packages/ember-application/lib/system/resolver.js:399 Parameters: found Boolean parsedName Object

DS.Store#init()

initprivate Defined in addon/-private/system/store.js:215

DataAdapter#getRecords()

getRecordsArrayprivate Defined in packages/ember-extension-support/lib/data_adapter.js:401 Fetches all loaded records for a given type. Returns: Array An array of records. This array will be observed for changes, so it should update when new records are added/removed.

ContainerProxyMixin#_resolveLocalLookupName()

_resolveLocalLookupName (fullName, source) Stringprivate Defined in packages/ember-runtime/lib/mixins/container_proxy.js:109 Given a name and a source path, resolve the fullName Parameters: fullName String source String Returns: String

Component#didUpdate event

didUpdatepublic Defined in packages/ember-htmlbars/lib/component.js:461 Available since 1.13.0 Called when the component has updated and rerendered itself. Called only during a rerender, not during an initial render.

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

Component#hasBlockParams

hasBlockParamspublic Defined in packages/ember-htmlbars/lib/component.js:258 Available since 1.13.0 Returns true when the component was invoked with a block parameter supplied. Example (hasBlockParams will be false): {{! templates/application.hbs }} {{#foo-bar}} No block parameter. {{/foo-bar}} {{! templates/components/foo-bar.hbs }} {{#if hasBlockParams}} This will not be printed, because no block was provided {{yield this}} {{/if}} Example (hasBlockParams will be true): {{! templ

Application#ready event

readypublic Defined in packages/ember-application/lib/system/application.js:751 Called when the Application has become ready, immediately before routing begins. The call will be delayed until the DOM has become ready.

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