HashLocation

Ember.HashLocation Class PRIVATE Extends: Ember.Object Defined in: packages/ember-routing/lib/location/hash_location.js:15 Module: ember-routing Ember.HashLocation implements the location API using the browser's hash. At present, it relies on a hashchange event existing in the browser.

HistoryLocation#setURL()

setURL (path) private Defined in packages/ember-routing/lib/location/history_location.js:89 Uses history.pushState to update the url without a page reload. Parameters: path String

HashLocation#getHash()

getHashprivate Defined in packages/ember-routing/lib/location/hash_location.js:32 Available since 1.5.1

CoreObject#isDestroying

isDestroyingpublic Defined in packages/ember-runtime/lib/system/core_object.js:405 Destruction scheduled flag. The destroy() method has been called. The object stays intact until the end of the run loop at which point the isDestroyed flag is set. Default: false

EngineInstance

Ember.EngineInstance Class PUBLIC Extends: Ember.Object Uses: RegistryProxyMixin Uses: ContainerProxyMixin Defined in: packages/ember-application/lib/system/engine-instance.js:18 Module: ember-application The EngineInstance encapsulates all of the stateful aspects of a running Engine.

Helper#recompute()

recomputepublic Defined in packages/ember-htmlbars/lib/helper.js:66 Available since 1.13.0 On a class-based helper, it may be useful to force a recomputation of that helpers value. This is akin to rerender on a component. For example, this component will rerender when the currentUser on a session service changes: // app/helpers/current-user-email.js export default Ember.Helper.extend({ session: Ember.inject.service(), onNewUser: Ember.observer('session.currentUser', function() { thi

DS.Model#becameInvalid event

becameInvalid Defined in addon/-private/system/model/model.js:458 Fired when the record becomes invalid.

ControllerMixin#_qpDelegate

_qpDelegateprivate Defined in packages/ember-routing/lib/ext/controller.js:25

EngineInstance#unregister()

unregister (fullName) public Inherited from RegistryProxyMixin but overwritten in packages/ember-application/lib/system/engine-instance.js:118 Unregister a factory. Overrides RegistryProxy#unregister in order to clear any cached instances of the unregistered factory. Parameters: fullName String

Component#didUpdateAttrs event

didUpdateAttrspublic Defined in packages/ember-htmlbars/lib/component.js:423 Available since 1.13.0 Called when the attributes passed into the component have been changed. Called only during a rerender, not during an initial render.