Route#setup()

setupprivate Defined in packages/ember-routing/lib/system/route.js:1177 This hook is the entry point for router.js

Route#deactivate event

deactivatepublic Defined in packages/ember-routing/lib/system/route.js:712 Available since 1.9.0 This event is triggered when the router completely exits this route. It is not executed when the model for the route changes. App.IndexRoute = Ember.Route.extend({ trackPageLeaveAnalytics: function(){ trackPageLeaveAnalytics(); }.on('deactivate') });

NoneLocation#formatURL()

formatURL (url) Stringprivate Defined in packages/ember-routing/lib/location/none_location.js:97 Given a URL, formats it to be placed into the page as part of an element's href attribute. This is used, for example, when using the {{action}} helper to generate a URL based on an event. Parameters: url String Returns: String url

DS.Model#_notifyProperties()

_notifyPropertiesprivate Defined in addon/-private/system/model/model.js:591

DS.Model#becameError event

becameError Defined in addon/-private/system/model/model.js:465 Fired when the record enters the error state.

Test#testCheckboxClick()

testCheckboxClickprivate Defined in packages/ember-testing/lib/support.js:13 This method creates a checkbox and triggers the click event to fire the passed in handler. It is used to correct for a bug in older versions of jQuery (e.g 1.8.3).

CoreObject

Ember.CoreObject Class PUBLIC Defined in: packages/ember-runtime/lib/system/core_object.js:204 Module: ember-runtime

TargetActionSupport

Ember.TargetActionSupport Class PRIVATE Extends: Ember.Mixin Defined in: packages/ember-runtime/lib/mixins/target_action_support.js:12 Module: ember-runtime Ember.TargetActionSupport is a mixin that can be included in a class to add a triggerAction method with semantics similar to the Handlebars {{action}} helper. In normal Ember usage, the {{action}} helper is usually the best choice. This mixin is most often useful when you are doing more complex event handling in View objects. See also

DS.RESTAdapter#headers

headers{Object} Defined in addon/adapters/rest.js:384 Some APIs require HTTP headers, e.g. to provide an API key. Arbitrary headers can be set as key/value pairs on the RESTAdapter's headers object and Ember Data will send them along with each ajax request. For dynamic headers see headers customization. app/adapters/application.js import DS from 'ember-data'; export default DS.RESTAdapter.extend({ headers: { "API_KEY": "secret key", "ANOTHER_HEADER": "Some header value" } });

MapWithDefault#copy()

copyEmber.MapWithDefaultprivate Inherited from Ember.Map but overwritten in packages/ember-metal/lib/map.js:468 Returns: Ember.MapWithDefault