ViewTargetActionSupport#tagName

tagNameStringpublic Defined in packages/ember-views/lib/mixins/view_support.js:367 Tag name for the view's outer element. The tag name is only used when an element is first created. If you change the tagName for an element, you must destroy and recreate the view element. By default, the render buffer will use a <div> tag for views. Default: null

ControllerMixin

Ember.ControllerMixin Class PRIVATE Uses: Ember.ActionHandler Defined in: packages/ember-runtime/lib/mixins/controller.js:6 Module: ember-routing

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

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.

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

MapWithDefault

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

Route

Ember.Route Class PUBLIC Extends: Ember.Object Uses: Ember.ActionHandler Uses: Ember.Evented Defined in: packages/ember-routing/lib/system/route.js:75 Module: ember-routing The Ember.Route class is used to define individual routes. Refer to the routing guide for documentation.

ArrayProxy#_contentWillChange()

_contentWillChangeprivate Defined in packages/ember-runtime/lib/system/array_proxy.js:133 Invoked when the content property is about to change. Notifies observers that the entire array content will change.

DataAdapter#getModelTypes()

getModelTypesArrayprivate Defined in packages/ember-extension-support/lib/data_adapter.js:343 Fetches all models defined in the application. Returns: Array Array of model types.

ApplicationInstance#rootElement

rootElementString|DOMElementprivate Defined in packages/ember-application/lib/system/application-instance.js:67 The root DOM element of the Application as an element or a jQuery-compatible selector string.