Map#copy()

copyEmber.Mapprivate Defined in packages/ember-metal/lib/map.js:402 Returns: Ember.Map

TextField#size

sizeStringpublic Defined in packages/ember-htmlbars/lib/components/text_field.js:124 The size of the text field in characters. Default: null

OrderedSet#delete()

delete (obj, _guid) Booleanprivate Defined in packages/ember-metal/lib/map.js:119 Available since 1.8.0 Parameters: obj _guid (optional and for internal use only) Returns: Boolean

DS.Store#push()

push (data) DS.Model|Array Defined in addon/-private/system/store.js:1962 Push some data for a given type into the store. This method expects normalized JSON API document. This means you have to follow JSON API specification with few minor adjustments: - record's type should always be in singular, dasherized form - members (properties) should be camelCased Your primary data should be wrapped inside data property: store.push({ data: { // primary data for single record of type `Person`

Ember.setEngineParent()

setEngineParent (engine, parent) private Defined in packages/ember-application/lib/system/engine-parent.js:23 setEngineParent sets an engine instance's parent instance. Parameters: engine EngineInstance An engine instance. parent EngineInstance The parent engine instance.

DS.RecordArrayManager

DS.RecordArrayManager Class PRIVATE Extends: Ember.Object Defined in: addon/-private/system/record-array-manager.js:57 Module: ember-data

DS.JSONSerializer#applyTransforms()

applyTransforms (typeClass, data) Objectprivate Defined in addon/serializers/json.js:175 Given a subclass of DS.Model and a JSON object this method will iterate through each attribute of the DS.Model and invoke the DS.Transform#deserialize method on the matching property of the JSON object. This method is typically called after the serializer's normalize method. Parameters: typeClass DS.Model data Object The data to transform Returns: Object data The transformed data object

DS.Model.relatedTypes

relatedTypesEmber.Arraystatic Defined in addon/-private/system/relationships/ext.js:415 An array of types directly related to a model. Each type will be included once, regardless of the number of relationships it has with the model. For example, given a model with this definition: app/models/blog.js import DS from 'ember-data'; export default DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post') }); This property would contain the follo

LinkComponent#tabindex

tabindexpublic Defined in packages/ember-htmlbars/lib/components/link-to.js:382 Sets the tabindex attribute of the LinkComponent's HTML element. Default: null

AriaRoleSupport

Ember.AriaRoleSupport Class PRIVATE Defined in: packages/ember-views/lib/mixins/aria_role_support.js:8 Module: ember-views