MapWithDefault

Ember.MapWithDefault Class PRIVATE Extends: Ember.Map Defined in: packages/ember-metal/lib/map.js:412 Module: ember-metal

Templates.helpers.mount()

mountpublic Defined in packages/ember-htmlbars/lib/keywords/mount.js:13 The {{mount}} helper lets you embed a routeless engine in a template. Mounting an engine will cause an instance to be booted and its application template to be rendered. For example, the following template mounts the ember-chat engine: {{! application.hbs }} {{mount "ember-chat"}} Currently, the engine name is the only argument that can be passed to {{mount}}.

Ember.generateController()

generateControllerprivate Defined in packages/ember-routing/lib/system/generate_controller.js:32 Available since 1.3.0 Generates and instantiates a controller. The type of the generated controller factory is derived from the context. If the context is an array an array controller is generated, if an object, an object controller otherwise, a basic controller is generated.

Registry#container()

container (options) Containerprivate Defined in packages/container/lib/registry.js:139 Creates a container based on this registry. Parameters: options Object Returns: Container created container

Container#reset()

reset (fullName) private Defined in packages/container/lib/container.js:153 Clear either the entire cache or just the cache for a particular key. Parameters: fullName String optional key to reset; if missing, resets everything

Ember.stream.Stream

Ember.stream.Stream Class PRIVATE Defined in: packages/ember-htmlbars/lib/streams/stream.js:19 Module: ember-metal

DS.JSONAPISerializer#serializeHasMany()

serializeHasMany (snapshot, json, relationship) Inherited from DS.JSONSerializer but overwritten in addon/serializers/json-api.js:567 Parameters: snapshot DS.Snapshot json Object relationship Object

Defining a Component

Defining a Component To define a component, run: ember generate component my-component-name Components must have at least one dash in their name. So blog-post is an acceptable name, and so is audio-player-controls, but post is not. This prevents clashes with current or future HTML element names, aligns Ember components with the W3C Custom Elements spec, and ensures Ember detects the components automatically. A sample component template could look like this: app/templates/components/blog-post

ViewTargetActionSupport#target

targetprivate Defined in packages/ember-views/lib/mixins/view_target_action_support.js:48

ember-debug

ember-debug Module Parent: ember