EngineInstance#setupRegistry()

setupRegistry (registry, options) private Defined in packages/ember-application/lib/system/engine-instance.js:143 Parameters: registry Registry options BootOptions

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

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

The Model Hook

The Model Hook Now, let's add a list of available rentals to the index template. We know that rentals will not be static, since eventually users will be able to add, update, and delete them. For this reason, we'll need a rentals model to save information about the rentals. To keep things simple at first, we'll use a hard-coded array of JavaScript objects. Later, we'll switch to using Ember Data, a library for robustly managing data in our app. Here's what our homepage will look like when we'r

Ember.hasListeners()

hasListeners (obj, eventName) private Defined in packages/ember-metal/lib/events.js:244 Parameters: obj eventName String

Route#_stashNames()

_stashNamesprivate Defined in packages/ember-routing/lib/system/route.js:295

PromiseProxyMixin#isFulfilled

isFulfilledpublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:130 Will become true if the proxied promise is fulfilled. Default: false

Controller

Ember.Controller Class PUBLIC Extends: Ember.Object Uses: Ember.ControllerMixin Defined in: packages/ember-runtime/lib/controllers/controller.js:12 Module: ember-runtime

Debug.registerDeprecationHandler()

registerDeprecationHandler (handler) publicstatic Defined in packages/ember-debug/lib/index.js:224 Available since 2.1.0 Allows for runtime registration of handler functions that override the default deprecation behavior. Deprecations are invoked by calls to Ember.deprecate. The following example demonstrates its usage by registering a handler that throws an error if the message contains the word "should", otherwise defers to the default handler. Ember.Debug.registerDeprecationHandler((mess

Component#destroy()

destroyprivate Inherited from Ember.CoreObject but overwritten in packages/ember-views/lib/mixins/view_support.js:328 You must call destroy on a view to destroy the view (and all of its child views). This will remove the view from any parent node, then make sure that the DOM element managed by the view can be released by the memory manager.