Test#find()

find (selector) Objectpublic Defined in packages/ember-testing/lib/helpers.js:105 Finds an element in the context of the app's container element. A simple alias for app.$(selector). Example: var $el = find('.my-selector'); Parameters: selector String jQuery string selector for element lookup Returns: Object jQuery object representing the results of the query

ArrayProxy#_contentDidChange()

_contentDidChangeprivate Defined in packages/ember-runtime/lib/system/array_proxy.js:180 Invoked when the content property changes. Notifies observers that the entire array content has changed.

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.

DS.Errors#_registerHandlers()

_registerHandlersprivate Defined in addon/-private/system/model/errors.js:111 Register with target handler

MutableArray#addObject()

addObject (obj) Ember.Arraypublic Inherited from Ember.MutableEnumerable but overwritten in packages/ember-runtime/lib/mixins/mutable_array.js:379 Push the object onto the end of the array if it is not already present in the array. let cities = ['Chicago', 'Berlin']; cities.addObject('Lima'); // ['Chicago', 'Berlin', 'Lima'] cities.addObject('Berlin'); // ['Chicago', 'Berlin', 'Lima'] Parameters: obj * object to add, if not already present Returns: Ember.Array receiver

Mixin.create()

create (arguments) publicstatic Defined in packages/ember-metal/lib/mixin.js:503 Parameters: arguments

Binding#oneWay()

oneWayEmber.Bindingpublic Defined in packages/ember-metal/lib/binding.js:106 Configures the binding as one way. A one-way binding will relay changes on the from side to the to side, but not the other way around. This means that if you change the to side directly, the from side may have a different value. Returns: Ember.Binding `this`

MutableArray#clear()

clearEmber.Arraypublic Defined in packages/ember-runtime/lib/mixins/mutable_array.js:87 Remove all elements from the array. This is useful if you want to reuse an existing array without having to recreate it. let colors = ['red', 'green', 'blue']; color.length(); // 3 colors.clear(); // [] colors.length(); // 0 Returns: Ember.Array An empty Array.