Route#queryParams

queryParamsObjectpublic Defined in packages/ember-routing/lib/system/route.js:87 Configuration hash for this route's queryParams. The possible configuration options and their defaults are as follows (assuming a query param whose controller property is page): queryParams: { page: { // By default, controller query param properties don't // cause a full transition when they are changed, but // rather only cause the URL to update. Setting // `refreshModel` to true will cause a

DS.Store#_fetchAll()

_fetchAll (typeClass, array) Promiseprivate Defined in addon/-private/system/store.js:1423 Parameters: typeClass DS.Model array DS.RecordArray Returns: Promise promise

Route#_updatingQPChanged()

_updatingQPChangedprivate Defined in packages/ember-routing/lib/system/route.js:336

Route#disconnectOutlet()

disconnectOutlet (options) public Defined in packages/ember-routing/lib/system/route.js:1957 Disconnects a view that has been rendered into an outlet. You may pass any or all of the following options to disconnectOutlet: outlet: the name of the outlet to clear (default: 'main') parentView: the name of the view containing the outlet to clear (default: the view rendered by the parent route) Example: App.ApplicationRoute = App.Route.extend({ actions: { showModal: function(evt) {

Test#findWithAssert()

findWithAssert (selector) Objectpublic Defined in packages/ember-testing/lib/helpers.js:122 Like find, but throws an error if the element selector returns no results. Example: var $el = findWithAssert('.doesnt-exist'); // throws error Parameters: selector String jQuery selector string for finding an element within the DOM Returns: Object jQuery object representing the results of the query

Test.checkWaiters()

checkWaiterspublicstatic Defined in packages/ember-testing/lib/test/waiters.js:74 Iterates through each registered test waiter, and invokes its callback. If any waiter returns false, this method will return true indicating that the waiters have not settled yet. This is generally used internally from the acceptance/integration test infrastructure.

DS.JSONSerializer#normalizeQueryRecordResponse()

normalizeQueryRecordResponse (store, primaryModelClass, payload, id, requestType) Object Defined in addon/serializers/json.js:276 Available since 1.13.0 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String Returns: Object JSON-API Document

Test#registerWaiter()

registerWaiter (context, callback) public Defined in packages/ember-testing/lib/test/waiters.js:7 Available since 1.2.0 This allows ember-testing to play nicely with other asynchronous events, such as an application that is waiting for a CSS3 transition or an IndexDB transaction. For example: Ember.Test.registerWaiter(function() { return myPendingTransactions() == 0; }); The context argument allows you to optionally specify the this with which your callback will be invoked. For example:

TextSupport#layoutName

layoutNameStringprivate Defined in packages/ember-views/lib/mixins/template_support.js:35 The name of the layout to lookup if no layout is provided. By default Ember.View will lookup a template with this name in Ember.TEMPLATES (a shared global object). Default: null

TextSupport#focusIn()

focusIn (event) private Defined in packages/ember-views/lib/mixins/text_support.js:242 Allows you to specify a controller action to invoke when a field receives focus. To use this method, give your field a focus-in attribute. The value of that attribute should be the name of the action in your controller that you wish to invoke. For an example on how to use the focus-in attribute, please reference the example near the top of this file. Parameters: event Event