Ember.observer()

observer (propertyNames, func) public Defined in packages/ember-metal/lib/mixin.js:703 Specify a method that observes property changes. Ember.Object.extend({ valueObserver: Ember.observer('value', function() { // Executes whenever the "value" property changes }) }); Also available as Function.prototype.observes if prototype extensions are enabled. Parameters: propertyNames String func Function Returns: func

Test#currentRouteName()

currentRouteNameObjectpublic Defined in packages/ember-testing/lib/helpers/current_route_name.js:6 Available since 1.5.0 Returns the currently active route name. Example: javascript function validateRouteName() { equal(currentRouteName(), 'some.path', "correct route was transitioned into."); } visit('/some/path').then(validateRouteName) Returns: Object The name of the currently active route.

Route#activate()

activatepublic Defined in packages/ember-routing/lib/system/route.js:877 This hook is executed when the router enters the route. It is not executed when the model for the route changes.

DS.RESTAdapter#parseErrorResponse()

parseErrorResponse (responseText) Objectprivate Defined in addon/adapters/rest.js:1086 Parameters: responseText String Returns: Object

LinkComponent#_invoke()

_invoke (event) private Defined in packages/ember-htmlbars/lib/components/link-to.js:613 Event handler that invokes the link, activating the associated route. Parameters: event Event

ViewTargetActionSupport#actionContext

actionContextprivate Defined in packages/ember-views/lib/mixins/view_target_action_support.js:53

TextField#pattern

patternStringpublic Defined in packages/ember-htmlbars/lib/components/text_field.js:134 The pattern attribute of input element. Default: null

ContainerProxyMixin

ContainerProxyMixin Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/container_proxy.js:10 Module: ember-runtime ContainerProxyMixin is used to provide public access to specific container functionality.

ArrayProxy#content

contentEmber.Arrayprivate Defined in packages/ember-runtime/lib/system/array_proxy.js:78 The content array. Must be an object that implements Ember.Array and/or Ember.MutableArray.

MutableArray#pushObject()

pushObject (obj) public Defined in packages/ember-runtime/lib/mixins/mutable_array.js:164 Push the object onto the end of the array. Works just like push() but it is KVO-compliant. let colors = ['red', 'green']; colors.pushObject('black'); // ['red', 'green', 'black'] colors.pushObject(['yellow']); // ['red', 'green', ['yellow']] Parameters: obj * object to push Returns: object same object passed as a param