DS.ManyArray#loadedRecord()

loadedRecordprivate Defined in addon/-private/system/many-array.js:224

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

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.)

OrderedSet#copy()

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

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

Route#enter()

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

DS.RecordArray#store

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

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.