Router#hasRoute()

hasRouteBooleanprivate Defined in packages/ember-routing/lib/system/router.js:433 Does this router instance have the given route. Returns: Boolean

HistoryLocation#formatURL()

formatURL (url) Stringprivate Defined in packages/ember-routing/lib/location/history_location.js:196 Used when using {{action}} helper. The url is always appended to the rootURL. Parameters: url String Returns: String formatted url

Ember.compare()

compare (v, w) Numberpublic Defined in packages/ember-runtime/lib/compare.js:40 Compares two javascript values and returns: -1 if the first is smaller than the second, 0 if both are equal, 1 if the first is greater than the second. Ember.compare('hello', 'hello'); // 0 Ember.compare('abc', 'dfg'); // -1 Ember.compare(2, 1); // 1 If the types of the two objects are different precedence occurs in the following order, with types earlier in the list considered < types

DS.Store#unloadAll()

unloadAll (modelName) Defined in addon/-private/system/store.js:1509 This method unloads all records in the store. Optionally you can pass a type which unload all records for a given type. store.unloadAll(); store.unloadAll('post'); Parameters: modelName String

VisibilitySupport#_isVisibleDidChange()

_isVisibleDidChangeprivate Defined in packages/ember-views/lib/mixins/visibility_support.js:33 When the view's isVisible property changes, toggle the visibility element of the actual DOM element.

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

DS.RecordArray#removeInternalModel()

removeInternalModel (internalModel) private Defined in addon/-private/system/record-arrays/record-array.js:159 Removes an internalModel to the RecordArray. Parameters: internalModel InternalModel

DS.ManyArray#save()

saveDS.PromiseArray Defined in addon/-private/system/many-array.js:244 Saves all of the records in the ManyArray. Example store.findRecord('inbox', 1).then(function(inbox) { inbox.get('messages').then(function(messages) { messages.forEach(function(message) { message.set('isRead', true); }); messages.save() }); }); Returns: DS.PromiseArray promise

DS.BuildURLMixin#_buildURL()

_buildURL (modelName, id) Stringprivate Defined in addon/-private/adapters/build-url-mixin.js:81 Parameters: modelName String id String Returns: String url

Router#startRouting()

startRoutingprivate Defined in packages/ember-routing/lib/system/router.js:181 Initializes the current router instance and sets up the change handling event listeners used by the instances location implementation. A property named initialURL will be used to determine the initial URL. If no value is found / will be used.