ProxyMixin

Ember.ProxyMixin Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/-proxy.js:43 Module: ember-runtime Ember.ProxyMixin forwards all properties not defined by the proxy itself to a proxied content object. See Ember.ObjectProxy for more details.

Registry

Registry Class PRIVATE Defined in: packages/container/lib/registry.js:9 Module: ember A registry used to store factory and option information keyed by type. A Registry stores the factory and option information needed by a Container to instantiate and cache objects. The API for Registry is still in flux and should not be considered stable.

Mixin#detect()

detect (obj) Booleanprivate Defined in packages/ember-metal/lib/mixin.js:586 Parameters: obj Returns: Boolean

ember-application

ember-application Module Parent: ember The ApplicationInstance encapsulates all of the stateful aspects of a running Application. At a high-level, we break application boot into two distinct phases: Definition time, where all of the classes, templates, and other dependencies are loaded (typically in the browser). Run time, where we begin executing the application once everything has loaded. Definition time can be expensive and only needs to happen once since it is an idempotent operation. For

Specifying a Route's Model

Specifying a Route's Model Often, you'll want a template to display data from a model. Loading the appropriate model is one job of a route. For example, take this router: app/router.js Router.map(function() { this.route('favorite-posts'); }); To load a model for the favorite-posts route, you would use the model() hook in the favorite-posts route handler: app/routes/favorite-posts.js import Ember from 'ember'; export default Ember.Route.extend({ model() { return this.get('store').que

DS.Errors#_clear()

_clearprivate Defined in addon/-private/system/model/errors.js:379 Removes all error messages. to the record.

Test#unregisterWaiter()

unregisterWaiter (context, callback) public Defined in packages/ember-testing/lib/test/waiters.js:47 Available since 1.2.0 unregisterWaiter is used to unregister a callback that was registered with registerWaiter. Parameters: context Object (optional) callback Function

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

Route#exit()

exitprivate Defined in packages/ember-routing/lib/system/route.js:469

Map#delete()

delete (key) Booleanprivate Defined in packages/ember-metal/lib/map.js:321 Available since 1.8.0 Removes a value from the map for an associated key. Parameters: key * Returns: Boolean true if an item was removed, false otherwise