DS.Store#defaultAdapter

defaultAdapterprivate Defined in addon/-private/system/store.js:269 This property returns the adapter, after resolving a possible string key. If the supplied adapter was a class, or a String property path resolved to a class, this property will instantiate the class. This property is cacheable, so the same instance of a specified adapter class should be used for the lifetime of the store. Returns: DS.Adapter

Test#registerHelper()

registerHelper (name, helperMethod, options) public Defined in packages/ember-testing/lib/test/helpers.js:5 registerHelper is used to register a test helper that will be injected when App.injectTestHelpers is called. The helper method will always be called with the current Application as the first parameter. For example: Ember.Test.registerHelper('boot', function(app) { Ember.run(app, app.advanceReadiness); }); This helper can later be called without arguments because it will be called w

ApplicationInstance.BootOptions#jQuery

jQueryObjectprivate Defined in packages/ember-application/lib/system/application-instance.js:315 Provide a specific instance of jQuery. This is useful in conjunction with the document option, as it allows you to use a copy of jQuery that is appropriately bound to the foreign document (e.g. a jsdom). This is highly experimental and support very incomplete at the moment. Default: auto-detected

ApplicationInstance.BootOptions

Ember.ApplicationInstance.BootOptions Class PUBLIC Defined in: packages/ember-application/lib/system/application-instance.js:292 Module: ember-application A list of boot-time configuration options for customizing the behavior of an Ember.ApplicationInstance. This is an interface class that exists purely to document the available options; you do not need to construct it manually. Simply pass a regular JavaScript object containing the desired options into methods that require one of these op

Ember.suspendListeners()

suspendListeners (obj, eventNames, target, method, callback) private Defined in packages/ember-metal/lib/events.js:162 Suspends multiple listeners during a callback. Parameters: obj eventNames Array Array of event names target Object|Function A target object or a function method Function|String A function or the name of a function to be called on `target` callback Function

Enumerable#forEach()

forEach (callback, target) Objectpublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:249 Iterates through the enumerable, calling the passed function on each item. This method corresponds to the forEach() method defined in JavaScript 1.6. The callback method you provide should have the following signature (all parameters are optional): function(item, index, enumerable); item is the current item in the iteration. index is the current index in the iteration. enumerable is th

Enumerable#addEnumerableObserver()

addEnumerableObserver (target, opts) private Defined in packages/ember-runtime/lib/mixins/enumerable.js:869 Registers an enumerable observer. Must implement Ember.EnumerableObserver mixin. Parameters: target Object opts [Object] Returns: this

HistoryLocation#onUpdateURL()

onUpdateURL (callback) private Defined in packages/ember-routing/lib/location/history_location.js:175 Register a callback to be invoked whenever the browser history changes, including using forward and back buttons. Parameters: callback Function

DS.JSONSerializer#_normalizeResponse()

_normalizeResponse (store, primaryModelClass, payload, id, requestType, isSingle) Objectprivate Defined in addon/serializers/json.js:444 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String isSingle Boolean Returns: Object JSON-API Document

Test#originalMethods

originalMethods{Object}private Defined in packages/ember-testing/lib/ext/application.js:29 Available since 1.3.0 This property will contain the original methods that were registered on the helperContainer before injectTestHelpers is called. When removeTestHelpers is called, these methods are restored to the helperContainer. Default: {}