Ember.streams.Dependency.classStringForValue()

classStringForValue (path, val, className, falsyClassName) privatestatic Defined in packages/ember-htmlbars/lib/streams/class_name_binding.js:53 Get the class name for a given value, based on the path, optional className and optional falsyClassName. if a className or falsyClassName has been specified: if the value is truthy and className has been specified, className is returned if the value is falsy and falsyClassName has been specified, falsyClassName is returned otherwise null is returne

DS.RecordArray#_unregisterFromManager()

_unregisterFromManagerprivate Defined in addon/-private/system/record-arrays/record-array.js:206

ember

ember Module

Ember.sendEvent()

sendEvent (obj, eventName, params, actions) public Defined in packages/ember-metal/lib/events.js:195 Send an event. The execution of suspended listeners is skipped, and once listeners are removed. A listener without a target is executed on the passed object. If an array of actions is not passed, the actions stored on the passed object are invoked. Parameters: obj eventName String params Array Optional parameters for each listener. actions Array Optional array of actions (lis

Development Helpers

Development Helpers Development Helpers Handlebars and Ember come with a few helpers that can make developing your templates a bit easier. These helpers make it simple to output variables into your browser's console, or activate the debugger from your templates. Logging The {{log}} helper makes it easy to output variables or expressions in the current rendering context into your browser's console: {{log 'Name is:' name}} The {{log}} helper also accepts primitive types such as strings or numb

DS.JSONSerializer#primaryKey

primaryKey{String} Defined in addon/serializers/json.js:87 The primaryKey is used when serializing and deserializing data. Ember Data always uses the id property to store the id of the record. The external source may not always follow this convention. In these cases it is useful to override the primaryKey property to match the primaryKey of your external store. Example app/serializers/application.js import DS from 'ember-data'; export default DS.JSONSerializer.extend({ primaryKey: '_id'

Engine#buildInstance()

buildInstanceEmber.EngineInstanceprivate Defined in packages/ember-application/lib/system/engine.js:87 Create an EngineInstance for this engine. Returns: Ember.EngineInstance the engine instance

DS.JSONAPISerializer#pushPayload()

pushPayload (store, payload) Defined in addon/serializers/json-api.js:213 Parameters: store DS.Store payload Object

Route#findModel()

findModel (type, value) private Defined in packages/ember-routing/lib/system/route.js:1519 Parameters: type String the model type value Object the value passed to find

Ember.addListener()

addListener (obj, eventName, target, method, once) public Defined in packages/ember-metal/lib/events.js:70 Add an event listener Parameters: obj eventName String target Object|Function A target object or a function method Function|String A function or the name of a function to be called on `target` once Boolean A flag whether a function should only be called once