OrderedSet#copy()

copyEmber.OrderedSetprivate Defined in packages/ember-metal/lib/map.js:204 Returns: Ember.OrderedSet

ActionHandler

Ember.ActionHandler Class PRIVATE Defined in: packages/ember-runtime/lib/mixins/action_handler.js:10 Module: ember-runtime Ember.ActionHandler is available on some familiar classes including Ember.Route, Ember.View, Ember.Component, and Ember.Controller. (Internally the mixin is used by Ember.CoreView, Ember.ControllerMixin, and Ember.Route and available to the above classes through inheritance.)

Query Parameters

Query Parameters Query parameters are optional key-value pairs that appear to the right of the ? in a URL. For example, the following URL has two query params, sort and page, with respective values ASC and 2: http://example.com/articles?sort=ASC&page=2 Query params allow for additional application state to be serialized into the URL that can't otherwise fit into the path of the URL (i.e. everything to the left of the ?). Common use cases for query params include representing the current

Application

Ember.Application Class PUBLIC Extends: Ember.Engine Uses: RegistryProxyMixin Defined in: packages/ember-application/lib/system/application.js:45 Module: ember-application An instance of Ember.Application is the starting point for every Ember application. It helps to instantiate, initialize and coordinate the many objects that make up your app. Each Ember app has one and only one Ember.Application object. In fact, the very first thing you should do in your application is create the instanc

DS.RecordArray#store

storeDS.Storeprivate Defined in addon/-private/system/record-arrays/record-array.js:77 The store that created this record array.

Route#enter()

enterprivate Defined in packages/ember-routing/lib/system/route.js:493

Ember.expandProperties()

expandProperties (pattern, callback) private Defined in packages/ember-metal/lib/expand_properties.js:11 Expands pattern, invoking callback for each expansion. The only pattern supported is brace-expansion, anything else will be passed once to callback directly. Example function echo(arg){ console.log(arg); } Ember.expandProperties('foo.bar', echo); //=> 'foo.bar' Ember.expandProperties('{foo,bar}', echo); //=> 'foo', 'bar' Ember.expandProperties('foo.{bar,baz

HTMLBars#_registerHelper()

_registerHelper (name, keyword) private Inherited from Ember.HTMLBars but overwritten in packages/ember-htmlbars/lib/keywords.js:19 Parameters: name String keyword Object|Function The keyword to add.

Observers

Observers Ember supports observing any property, including computed properties. Observers should contain behavior that reacts to changes in another property. Observers are especially useful when you need to perform some behavior after a binding has finished synchronizing. Observers are often over-used by new Ember developers. Observers are used heavily within the Ember framework itself, but for most problems Ember app developers face, computed properties are the appropriate solution. You can

Test.Adapter#asyncEnd()

asyncEndpublic Defined in packages/ember-testing/lib/adapters/adapter.js:30 This callback will be called whenever an async operation has completed.