InstrumentationSupport

Ember.InstrumentationSupport Class PUBLIC Defined in: packages/ember-views/lib/mixins/instrumentation_support.js:8 Module: ember-views

DS.Store#unloadRecord()

unloadRecord (record) Defined in addon/-private/system/store.js:406 For symmetry, a record can be unloaded via the store. Only non-dirty records can be unloaded. Example store.findRecord('post', 1).then(function(post) { store.unloadRecord(post); }); Parameters: record DS.Model

Templates.helpers.debugger()

debuggerpublic Defined in packages/ember-htmlbars/lib/keywords/debugger.js:10 Execute the debugger statement in the current template's context. {{debugger}} When using the debugger helper you will have access to a get function. This function retrieves values available in the context of the template. For example, if you're wondering why a value {{foo}} isn't rendering as expected within a template, you could place a {{debugger}} statement and, when the debugger; breakpoint is hit, you can a

Ember.getEngineParent()

getEngineParent (engine) EngineInstancepublic Defined in packages/ember-application/lib/system/engine-parent.js:10 getEngineParent retrieves an engine instance's parent instance. Parameters: engine EngineInstance An engine instance. Returns: EngineInstance The parent engine instance.

The Run Loop

The Run Loop Ember's internals and most of the code you will write in your applications takes place in a run loop. The run loop is used to batch, and order (or reorder) work in a way that is most effective and efficient. It does so by scheduling work on specific queues. These queues have a priority, and are processed to completion in priority order. For basic Ember app development scenarios, you don't need to understand the run loop or use it directly. All common paths are paved nicely for yo

DS.SnapshotRecordArray#_snapshots

_snapshots{Array}private Defined in addon/-private/system/snapshot-record-array.js:14 An array of snapshots

DS.RecordArray#objectAtContent()

objectAtContent (index) DS.Modelprivate Defined in addon/-private/system/record-arrays/record-array.js:91 Retrieves an object from the content by index. Parameters: index Number Returns: DS.Model record

DS.Errors#_add()

_addprivate Defined in addon/-private/system/model/errors.js:241 Adds error messages to a given attribute without sending event.

Application#boot()

bootPromiseprivate Defined in packages/ember-application/lib/system/application.js:541 Initialize the application and return a promise that resolves with the Ember.Application object when the boot process is complete. Run any application initializers and run the application load hook. These hooks may choose to defer readiness. For example, an authentication hook might want to defer readiness until the auth token has been retrieved. By default, this method is called automatically on "DOM rea

String#fmt()

fmt (str, formats) Stringdeprecatedpublic Defined in packages/ember-runtime/lib/system/string.js:155 Use ES6 template strings instead: http://babeljs.io/docs/learn-es2015/#template-strings Apply formatting options to the string. This will look for occurrences of "%@" in your string and substitute them with the arguments you pass into this method. If you want to control the specific order of replacement, you can add a number after the key as well to indicate which argument you want to inse