Registry#_options

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

TextSupport.isView

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

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.

DS.RecordArray#store

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

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.Model.eachTransformedAttribute()

eachTransformedAttribute (callback, binding) static Defined in addon/-private/system/model/attr.js:170 Iterates through the transformedAttributes of the model, calling the passed function on each attribute. Note the callback will not be called for any attributes that do not have an transformation type. The callback method you provide should have the following signature (all parameters are optional): function(name, type); name the name of the current property in the iteration type a strin

DS.JSONAPISerializer#payloadKeyFromModelName()

payloadKeyFromModelName (modelName) String Defined in addon/serializers/json-api.js:360 Parameters: modelName String Returns: String