ClassNamesSupport

Ember.ClassNamesSupport Class PRIVATE Defined in: packages/ember-views/lib/mixins/class_names_support.js:11 Module: ember-views

ClassNamesSupport#classNames

classNamesArraypublic Defined in packages/ember-views/lib/mixins/class_names_support.js:29 Standard CSS class names to apply to the view's outer element. This property automatically inherits any class names defined by the view's superclasses as well. Default: ['ember-view']

Templates.helpers.link-to()

link-to (routeName, context, options) Stringpublic Defined in packages/ember-htmlbars/lib/components/link-to.js:6 The {{link-to}} component renders a link to the supplied routeName passing an optionally supplied model to the route as its model context of the route. The block for {{link-to}} becomes the innerHTML of the rendered element: {{#link-to 'photoGallery'}} Great Hamster Photos {{/link-to}} You can also use an inline form of {{link-to}} component by passing the link text as the fi

ClassNamesSupport#removeChild()

removeChild (view) Ember.Viewprivate Defined in packages/ember-views/lib/mixins/child_views_support.js:33 Removes the child view from the parent view. Parameters: view Ember.View Returns: Ember.View receiver

Route#transitionTo()

transitionTo (name, models, options) Transitionpublic Defined in packages/ember-routing/lib/system/route.js:886 Transition the application into another route. The route may be either a single route or route path: this.transitionTo('blogPosts'); this.transitionTo('blogPosts.recentEntries'); Optionally supply a model for the route in question. The model will be serialized into the URL using the serialize hook of the route: this.transitionTo('blogPost', aPost); If a literal is passed (such a

Test#helperContainer

helperContainer{Object} The object to be used for test helpers.private Defined in packages/ember-testing/lib/ext/application.js:84 Available since 1.2.0 This will be used as the container to inject the test helpers into. By default the helpers are injected into window. Default: window

Component#didRender event

didRenderpublic Defined in packages/ember-htmlbars/lib/component.js:385 Available since 1.13.0 Called after a component has been rendered, both on initial render and in subsequent rerenders.

ComputedProperty

Ember.ComputedProperty Class PUBLIC Defined in: packages/ember-metal/lib/computed.js:30 Module: ember-metal A computed property transforms an object literal with object's accessor function(s) into a property. By default the function backing the computed property will only be called once and the result will be cached. You can specify various properties that your computed property depends on. This will force the cached result to be recomputed if the dependencies are modified. In the followin

Service

Ember.Service Class PUBLIC Extends: Ember.Object Defined in: packages/ember-runtime/lib/system/service.js:35 Module: ember

DS.Model#didCreate event

didCreate Defined in addon/-private/system/model/model.js:444 Fired when a new record is commited to the server.