DS.RecordArray#isUpdating

isUpdatingBoolean Defined in addon/-private/system/record-arrays/record-array.js:60 The flag to signal a RecordArray is currently loading data. Example var people = store.peekAll('person'); people.get('isUpdating'); // false people.update(); people.get('isUpdating'); // true

Links

Links The {{link-to}} Helper You create a link to a route using the {{link-to}} helper. app/router.js Router.map(function() { this.route('photos', function(){ this.route('edit', { path: '/:photo_id' }); }); }); app/templates/photos.hbs <ul> {{#each photos as |photo|}} <li>{{#link-to "photos.edit" photo}}{{photo.title}}{{/link-to}}</li> {{/each}} </ul> If the model for the photos template is a list of three photos, the rendered HTML would look somethin

Ember.run

Ember.run Namespace PUBLIC Defined in: packages/ember-metal/lib/run_loop.js:50 Module: ember-metal Runs the passed target and method inside of a RunLoop, ensuring any deferred actions including bindings and views updates are flushed at the end. Normally you should not need to invoke this method yourself. However if you are implementing raw event handlers when interfacing with other libraries or plugins, you should probably wrap all of your code inside this call. run(function() { // code

Inflector#plural()

plural (regex, string) Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:172 Parameters: regex RegExp string String

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.

ember-testing

ember-testing Module Parent: ember The primary purpose of this class is to create hooks that can be implemented by an adapter for various test frameworks.

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