DS.FilteredRecordArray#updateFilter()

updateFilterprivate Defined in addon/-private/system/record-arrays/filtered-record-array.js:55

Component#hasBlock

hasBlockpublic Defined in packages/ember-htmlbars/lib/component.js:198 Available since 1.13.0 Returns true when the component was invoked with a block template. Example (hasBlock will be false): {{! templates/application.hbs }} {{foo-bar}} {{! templates/components/foo-bar.hbs }} {{#if hasBlock}} This will not be printed, because no block was provided {{/if}} Example (hasBlock will be true): {{! templates/application.hbs }} {{#foo-bar}} Hi! {{/foo-bar}} {{! templates/components/foo-

DS.RESTAdapter#_requestToJQueryAjaxHash()

_requestToJQueryAjaxHash (request) Objectprivate Defined in addon/adapters/rest.js:1344 Convert a request object into a hash which can be passed to jQuery.ajax. Parameters: request Object Returns: Object jQuery ajax hash

Observable#cacheFor()

cacheFor (keyName) Objectpublic Defined in packages/ember-runtime/lib/mixins/observable.js:490 Returns the cached value of a computed property, if it exists. This allows you to inspect the value of a computed property without accidentally invoking it if it is intended to be generated lazily. Parameters: keyName String Returns: Object The cached value of the computed property, if any

Debug.registerWarnHandler()

registerWarnHandler (handler) publicstatic Defined in packages/ember-debug/lib/index.js:260 Available since 2.1.0 Allows for runtime registration of handler functions that override the default warning behavior. Warnings are invoked by calls made to Ember.warn. The following example demonstrates its usage by registering a handler that does nothing overriding Ember's default warning behavior. // next is not called, so no warnings get the default behavior Ember.Debug.registerWarnHandler(() =&g

Test#fillIn()

fillIn (selector, text) RSVP.Promisepublic Defined in packages/ember-testing/lib/helpers.js:85 Fills in an input element with some text. Example: fillIn('#email', 'you@example.com').then(function() { // assert something }); Parameters: selector String jQuery selector finding an input element on the DOM to fill text with text String text to place inside the input element Returns: RSVP.Promise

Route#deactivate()

deactivatepublic Defined in packages/ember-routing/lib/system/route.js:868 This hook is executed when the router completely exits this route. It is not executed when the model for the route changes.

Test#wait()

wait (value) RSVP.Promisepublic Defined in packages/ember-testing/lib/helpers.js:140 Causes the run loop to process any pending events. This is used to ensure that any async operations from other helpers (or your assertions) have been processed. This is most often used as the return value for the helper functions (see 'click', 'fillIn','visit',etc). Example: Ember.Test.registerAsyncHelper('loginUser', function(app, username, password) { visit('secured/path/here') .fillIn('#username', us

DS.Adapter#shouldBackgroundReloadAll()

shouldBackgroundReloadAll (store, snapshotRecordArray) Boolean Defined in addon/adapter.js:619 Available since 1.13.0 This method is used by the store to determine if the store should reload a record array after the store.findAll method resolves with a cached record array. This method is only checked by the store when the store is returning a cached record array. If this method returns true the store will re-fetch all records from the adapter. For example, if you do not want to fetch comple

OrderedSet

Ember.OrderedSet Class PRIVATE Defined in: packages/ember-metal/lib/map.js:56 Module: ember-metal This class is used internally by Ember and Ember Data. Please do not use it at this time. We plan to clean it up and add many tests soon.