Transition#method()

method (method) Transitionpublic Defined in bower_components/router.js/lib/router/transition.js:223 Sets the URL-changing method to be employed at the end of a successful transition. By default, a new Transition will just use updateURL, but passing 'replace' to this method will cause the URL to update using 'replaceWith' instead. Omitting a parameter will disable the URL change, allowing for transitions that don't update the URL at completion (this is also used for handleURL, since the URL

ControllerMixin#_qpChanged()

_qpChangedprivate Defined in packages/ember-routing/lib/ext/controller.js:31

PromiseProxyMixin#then()

then (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:165 An alias to the proxied promise's then. See RSVP.Promise.then. Parameters: callback Function Returns: RSVP.Promise

NoneLocation#onUpdateURL()

onUpdateURL (callback) private Defined in packages/ember-routing/lib/location/none_location.js:72 Register a callback to be invoked when the path changes. These callbacks will execute when the user presses the back or forward button, but not after setURL is invoked. Parameters: callback Function

DS.Snapshot#adapterOptions

adapterOptions{Object} Defined in addon/-private/system/snapshot.js:33 A hash of adapter options

Container#cache

cacheInheritingDictprivate Defined in packages/container/lib/container.js:50

DS.ManyArray#loadingRecordsCount()

loadingRecordsCount (count) private Defined in addon/-private/system/many-array.js:215 Parameters: count Number

DS.Errors#_remove()

_removeprivate Defined in addon/-private/system/model/errors.js:329 Removes all error messages from the given attribute without sending event.

NoneLocation#getURL()

getURLStringprivate Defined in packages/ember-routing/lib/location/none_location.js:42 Returns the current path without rootURL. Returns: String path

Enumerable#isEvery()

isEvery (key, value) Booleanpublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:595 Available since 1.3.0 Returns true if the passed property resolves to the value of the second argument for all items in the enumerable. This method is often simpler/faster than using a callback. Parameters: key String the property to test value [String] optional value to test against. Defaults to `true` Returns: Boolean