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.

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.

Route#enter()

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

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.

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

TextSupport.isView

isViewBooleanprivatestatic Defined in packages/ember-views/lib/mixins/template_support.js:9 Default: true

Enumerable#sortBy()

sortBy (property) Arraypublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:1047 Available since 1.2.0 Converts the enumerable into an array and sorts by the keys specified in the argument. You may provide multiple arguments to sort by multiple properties. Parameters: property String name(s) to sort on Returns: Array The sorted array.

Registry#_options

_optionsInheritingDictprivate Defined in packages/container/lib/registry.js:123