Ember.sendEvent()

sendEvent (obj, eventName, params, actions) public Defined in packages/ember-metal/lib/events.js:195 Send an event. The execution of suspended listeners is skipped, and once listeners are removed. A listener without a target is executed on the passed object. If an array of actions is not passed, the actions stored on the passed object are invoked. Parameters: obj eventName String params Array Optional parameters for each listener. actions Array Optional array of actions (lis

Freezable

Ember.Freezable Class DEPRECATED PRIVATE Defined in: packages/ember-runtime/lib/mixins/freezable.js:11 Module: ember-runtime The Ember.Freezable mixin implements some basic methods for marking an object as frozen. Once an object is frozen it should be read only. No changes may be made the internal state of the object. Enforcement To fully support freezing in your subclass, you must include this mixin and override any method that might alter any property on the object to instead raise an ex

Test#currentURL()

currentURLObjectpublic Defined in packages/ember-testing/lib/helpers.js:187 Available since 1.5.0 Returns the current URL. Example: function validateURL() { equal(currentURL(), '/some/path', "correct URL was transitioned into."); } click('#some-link-id').then(validateURL); Returns: Object The currently active URL.

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

Enumerable#removeEnumerableObserver()

removeEnumerableObserver (target, opts) private Defined in packages/ember-runtime/lib/mixins/enumerable.js:898 Removes a registered enumerable observer. Parameters: target Object opts [Object] Returns: this

DS.Store#_load()

_load (type, data) private Defined in addon/-private/system/store.js:1864 This internal method is used by push. Parameters: type (String|DS.Model) data Object

ApplicationInstance#setupRegistry()

setupRegistry (registry, options) private Inherited from Ember.EngineInstance but overwritten in packages/ember-application/lib/system/application-instance.js:278 Parameters: registry Registry options BootOptions

Container#factoryCache

factoryCacheInheritingDictprivate Defined in packages/container/lib/container.js:57

DataAdapter#containerDebugAdapter

containerDebugAdapterpublic Defined in packages/ember-extension-support/lib/data_adapter.js:68 Available since 1.5.0 The container-debug-adapter which is used to list all models. Default: undefined

DS.JSONSerializer#normalizeQueryResponse()

normalizeQueryResponse (store, primaryModelClass, payload, id, requestType) Object Defined in addon/serializers/json.js:346 Available since 1.13.0 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String Returns: Object JSON-API Document