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

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.

DS.Store#init()

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

DS.PromiseManyArray

DS.PromiseManyArray Class Extends: Ember.ArrayProxy Defined in: addon/-private/system/promise-proxies.js:81 Module: ember-data A PromiseManyArray is a PromiseArray that also proxies certain method calls to the underlying manyArray. Right now we proxy: reload() createRecord() on() one() trigger() off() has()

Function#on()

onpublic Defined in packages/ember-runtime/lib/ext/function.js:162 The on extension of Javascript's Function prototype is available when EmberENV.EXTEND_PROTOTYPES or EmberENV.EXTEND_PROTOTYPES.Function is true, which is the default. You can listen for events simply by adding the on call to the end of your method declarations in classes or mixins that you write. For example: Ember.Mixin.create({ doSomethingWithElement: function() { // Executes whenever the "didInsertElement" event fir

String#decamelize()

decamelize (str) Stringpublic Defined in packages/ember-runtime/lib/system/string.js:228 Converts a camelized string into all lower case separated by underscores. 'innerHTML'.decamelize(); // 'inner_html' 'action_name'.decamelize(); // 'action_name' 'css-class-name'.decamelize(); // 'css-class-name' 'my favorite items'.decamelize(); // 'my favorite items' Parameters: str String The string to decamelize. Returns: String the decamelized string.

Registry#fallback

fallbackRegistryprivate Defined in packages/container/lib/registry.js:50 A backup registry for resolving registrations when no matches can be found.

RSVP.EventTarget#mixin()

mixin (object) private Defined in bower_components/rsvp/lib/rsvp/events.js:24 RSVP.EventTarget.mixin extends an object with EventTarget methods. For Example: var object = {}; RSVP.EventTarget.mixin(object); object.on('finished', function(event) { // handle event }); object.trigger('finished', { detail: value }); EventTarget.mixin also works with prototypes: var Person = function() {}; RSVP.EventTarget.mixin(Person.prototype); var yehuda = new Person(); var tom = new Person(); yehuda

ember-glimmer

ember-glimmer Module Parent: ember

Registry#registrations

registrationsInheritingDictprivate Defined in packages/container/lib/registry.js:68