Ember.run.end()

endVoidpublic Defined in packages/ember-metal/lib/run_loop.js:199 Ends a RunLoop. This must be called sometime after you call run.begin() to flush any deferred actions. This is a lower-level way to use a RunLoop instead of using run(). run.begin(); // code to be executed within a RunLoop run.end(); Returns: Void

DS.Snapshot

DS.Snapshot Class PRIVATE Defined in: addon/-private/system/snapshot.js:10 Module: ember-data

DS.NotFoundError

DS.NotFoundError Class Defined in: addon/adapters/errors.js:147 Module: ember-data

DefaultResolver#namespace

namespacepublic Defined in packages/ember-application/lib/system/resolver.js:112 This will be set to the Application instance when it is created.

Copyable

Ember.Copyable Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/copyable.js:12 Module: ember-runtime Implements some standard methods for copying an object. Add this mixin to any object you create that can create a copy of itself. This mixin is added automatically to the built-in array. You should generally implement the copy() method to return a copy of the receiver. Note that frozenCopy() will only work if you also implement Ember.Freezable.

CoreView#parentView

parentViewEmber.Viewprivate Defined in packages/ember-views/lib/views/core_view.js:62 If the view is currently inserted into the DOM of a parent view, this property will point to the parent of the view. Default: null

Component#didUpdateAttrs()

didUpdateAttrspublic Defined in packages/ember-htmlbars/lib/component.js:413 Available since 1.13.0 Called when the attributes passed into the component have been changed. Called only during a rerender, not during an initial render.

Test#unregisterHelper()

unregisterHelper (name) public Defined in packages/ember-testing/lib/test/helpers.js:91 Remove a previously added helper method. Example: Ember.Test.unregisterHelper('wait'); Parameters: name String The helper to remove.

Enumerable#enumerableContentWillChange()

enumerableContentWillChange (removing, adding) private Defined in packages/ember-runtime/lib/mixins/enumerable.js:939 Invoke this method just before the contents of your enumerable will change. You can either omit the parameters completely or pass the objects to be removed or added if available or just a count. Parameters: removing Ember.Enumerable|Number An enumerable of the objects to be removed or the number of items to be removed. adding Ember.Enumerable|Number An enumerable of

Disabling Prototype Extensions

Disabling Prototype Extensions By default, Ember.js will extend the prototypes of native JavaScript objects in the following ways: Array is extended to implement the Ember.Enumerable, Ember.MutableEnumerable, Ember.MutableArray and Ember.Array interfaces. This polyfills ECMAScript 5 array methods in browsers that do not implement them, adds convenience methods and properties to built-in arrays, and makes array mutations observable. String is extended to add convenience methods, such as cameli