Installing Ember

Installing Ember Getting started with Ember is easy. Ember projects are created and managed through our command line build tool Ember CLI. This tool provides: Modern application asset management (including concatenation, minification, and versioning). Generators to help create components, routes, and more. A conventional project layout, making existing Ember applications easy to approach. Support for ES2015/ES6 JavaScript via the Babel project. This includes support for JavaScript modules, wh

DS.Model#data

data{Object}private Defined in addon/-private/system/model/model.js:947

ViewTargetActionSupport#element

elementDOMElementpublic Defined in packages/ember-views/lib/mixins/view_support.js:87 Returns the current DOM element for the view.

Ember.debug()

debug (message) public Defined in packages/ember-debug/lib/index.js:60 Display a debug notice. In a production build, this method is defined as an empty function (NOP). Uses of this method in Ember itself are stripped from the ember.prod.js build. Ember.debug('I\'m a debug notice!'); Parameters: message String A debug message to display.

ViewTargetActionSupport#destroy()

destroyprivate Defined in packages/ember-views/lib/mixins/view_support.js:328 You must call destroy on a view to destroy the view (and all of its child views). This will remove the view from any parent node, then make sure that the DOM element managed by the view can be released by the memory manager.

Test#click()

click (selector, context) RSVP.Promisepublic Defined in packages/ember-testing/lib/helpers.js:44 Clicks an element and triggers any actions triggered by the element's click event. Example: click('.some-jQuery-selector').then(function() { // assert something }); Parameters: selector String jQuery selector for finding element on the DOM context Object A DOM Element, Document, or jQuery to use as context Returns: RSVP.Promise

Test#_helpers

_helpersprivate Defined in packages/ember-testing/lib/test.js:42 Available since 1.7.0 Hash containing all known test helpers.

Transition#promise

promise{Object}public Defined in bower_components/router.js/lib/router/transition.js:108 The Transition's internal promise. Calling .then on this property is that same as calling .then on the Transition object itself, but this property is exposed for when you want to pass around a Transition's promise, but not the Transition object itself, since Transition object can be externally aborted, while the promise cannot.

DS.ConflictError

DS.ConflictError Class Defined in: addon/adapters/errors.js:154 Module: ember-data

Route#_optionsForQueryParam

_optionsForQueryParamprivate Defined in packages/ember-routing/lib/system/route.js:435