ViewTargetActionSupport#tagName

tagNameStringpublic Defined in packages/ember-views/lib/mixins/view_support.js:367 Tag name for the view's outer element. The tag name is only used when an element is first created. If you change the tagName for an element, you must destroy and recreate the view element. By default, the render buffer will use a <div> tag for views. Default: null

Route#_optionsForQueryParam

_optionsForQueryParamprivate Defined in packages/ember-routing/lib/system/route.js:435

DS.ConflictError

DS.ConflictError Class Defined in: addon/adapters/errors.js:154 Module: ember-data

Transition#promise

promise{Object}public Defined in bower_components/router.js/lib/router/transition.js:108 The Transition's internal promise. Calling .then on this property is that same as calling .then on the Transition object itself, but this property is exposed for when you want to pass around a Transition's promise, but not the Transition object itself, since Transition object can be externally aborted, while the promise cannot.

HistoryLocation#getHash()

getHashprivate Defined in packages/ember-routing/lib/location/history_location.js:233

DS.SnapshotRecordArray#_recordArray

_recordArray{Array}private Defined in addon/-private/system/snapshot-record-array.js:21 An array of records

RSVP.Promise#then()

then (onFulfillment, onRejection, label) Promise Defined in bower_components/rsvp/lib/rsvp/promise.js:184 The primary way of interacting with a promise is through its then method, which registers callbacks to receive either a promise's eventual value or the reason why the promise cannot be fulfilled. findUser().then(function(user){ // user is available }, function(reason){ // user is unavailable, and you are given the reason why }); Chaining The return value of then is itself a promise

Test#_helpers

_helpersprivate Defined in packages/ember-testing/lib/test.js:42 Available since 1.7.0 Hash containing all known test helpers.

Test#click()

click (selector, context) RSVP.Promisepublic Defined in packages/ember-testing/lib/helpers.js:44 Clicks an element and triggers any actions triggered by the element's click event. Example: click('.some-jQuery-selector').then(function() { // assert something }); Parameters: selector String jQuery selector for finding element on the DOM context Object A DOM Element, Document, or jQuery to use as context Returns: RSVP.Promise

ViewTargetActionSupport#destroy()

destroyprivate Defined 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.