DS.JSONSerializer#normalizeRelationships()

normalizeRelationshipsprivate Defined in addon/serializers/json.js:746

HistoryLocation#willDestroy()

willDestroyprivate Inherited from Ember.CoreObject but overwritten in packages/ember-routing/lib/location/history_location.js:221 Cleans up the HistoryLocation event listener.

Observable#incrementProperty()

incrementProperty (keyName, increment) Numberpublic Defined in packages/ember-runtime/lib/mixins/observable.js:433 Set the value of a property to the current value plus some amount. person.incrementProperty('age'); team.incrementProperty('score', 2); Parameters: keyName String The name of the property to increment increment Number The amount to increment by. Defaults to 1 Returns: Number The new property value

DS.RESTAdapter#isInvalid()

isInvalid (status, headers, payload) Boolean Defined in addon/adapters/rest.js:960 Available since 1.13.0 Default handleResponse implementation uses this hook to decide if the response is a an invalid error. Parameters: status Number headers Object payload Object Returns: Boolean

DS.EmbeddedRecordsMixin#_extractEmbeddedHasMany()

_extractEmbeddedHasManyprivate Defined in addon/serializers/embedded-records-mixin.js:548

DS.TimeoutError

DS.TimeoutError Class Defined in: addon/adapters/errors.js:119 Module: ember-data

MutableArray#[]

[]public Inherited from Ember.Enumerable but overwritten in packages/ember-runtime/lib/mixins/array.js:281 This is the handler for the special array content property. If you get this property, it will return this. If you set this property to a new array, it will replace the current content. This property overrides the default property defined in Ember.Enumerable. Returns: this

Enumerable#every()

every (callback, target) Booleanpublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:556 Returns true if the passed function returns true for every item in the enumeration. This corresponds with the every() method in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): function(item, index, enumerable); item is the current item in the iteration. index is the current index in the iteration. enumerable is the enume

DS.RESTSerializer

DS.RESTSerializer Class Extends: DS.JSONSerializer Defined in: addon/serializers/rest.js:16 Module: ember-data Normally, applications will use the RESTSerializer by implementing the normalize method. This allows you to do whatever kind of munging you need, and is especially useful if your server is inconsistent and you need to do munging differently for many different kinds of responses. See the normalize documentation for more information. Across the Board Normalization There are also a n

Ember.isNone()

isNone (obj) Booleanpublic Defined in packages/ember-metal/lib/is_none.js:1 Returns true if the passed value is null or undefined. This avoids errors from JSLint complaining about use of ==, which can be technically confusing. Ember.isNone(); // true Ember.isNone(null); // true Ember.isNone(undefined); // true Ember.isNone(''); // false Ember.isNone([]); // false Ember.isNone(function() {}); // false Parameters: obj Object Value to test