DS.EmbeddedRecordsMixin#_normalizeEmbeddedRelationship()

_normalizeEmbeddedRelationshipprivate Defined in addon/serializers/embedded-records-mixin.js:600

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

Ember.makeArray()

makeArray (obj) Arrayprivate Defined in packages/ember-metal/lib/utils.js:370 Forces the passed object to be part of an array. If the object is already an array, it will return the object. Otherwise, it will add the object to an array. If obj is null or undefined, it will return an empty array. Ember.makeArray(); // [] Ember.makeArray(null); // [] Ember.makeArray(undefined); // [] Ember.makeArray('lindsay'); // ['lindsay'] Ember.makeArray([1, 2, 42]); // [1, 2, 42] l

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

LinkComponent#activeClass

activeClassStringprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:401 The CSS class to apply to LinkComponent's element when its active property is true. Default: active

DS.JSONSerializer

DS.JSONSerializer Class Extends: DS.Serializer Defined in: addon/serializers/json.js:19 Module: ember-data Ember Data 2.0 Serializer: In Ember Data a Serializer is used to serialize and deserialize records when they are transferred in and out of an external source. This process involves normalizing property names, transforming attribute values and serializing relationships. By default, Ember Data uses and recommends the JSONAPISerializer. JSONSerializer is useful for simpler or legacy back

Container#factoryCache

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

DS.Serializer#serialize()

serialize (record, options) Object Defined in addon/serializer.js:57 The serialize method is used when a record is saved in order to convert the record into the form that your external data source expects. serialize takes an optional options hash with a single option: includeId: If this is true, serialize should include the ID in the serialized object it builds. Parameters: record DS.Model options [Object] Returns: Object