DS.Errors#errorsByAttributeName

errorsByAttributeName{Ember.MapWithDefault}private Defined in addon/-private/system/model/errors.js:123

Route#_names

_namesprivate Defined in packages/ember-routing/lib/system/route.js:288

Application#advanceReadiness()

advanceReadinesspublic Defined in packages/ember-application/lib/system/application.js:523 Call advanceReadiness after any asynchronous setup logic has completed. Each call to deferReadiness must be matched by a call to advanceReadiness or the application will never become ready and routing will not begin.

Acceptance Tests

Acceptance Tests To create an acceptance test, run ember generate acceptance-test <name>. For example: ember g acceptance-test login This generates this file: tests/acceptance/login-test.js import { test } from 'qunit'; import moduleForAcceptance from 'people/tests/helpers/module-for-acceptance'; moduleForAcceptance('Acceptance | login'); test('visiting /login', function(assert) { visit('/login'); andThen(function() { assert.equal(currentURL(), '/login'); }); }); moduleFo

AutoLocation#history

historyprivate Defined in packages/ember-routing/lib/location/auto_location.js:52 Available since 1.5.1 Default: environment.history

DS.Errors#_findOrCreateMessages()

_findOrCreateMessagesprivate Defined in addon/-private/system/model/errors.js:255

Registry#register()

register (fullName, factory, options) private Defined in packages/container/lib/registry.js:151 Registers a factory for later injection. Example: let registry = new Registry(); registry.register('model:user', Person, {singleton: false }); registry.register('fruit:favorite', Orange); registry.register('communication:main', Email, {singleton: false}); Parameters: fullName String factory Function options Object

Array#length

lengthNumberpublic Defined in packages/ember-runtime/lib/mixins/array.js:214 Required. You must implement this method to apply this mixin. Your array must support the length property. Your replace methods should set this property whenever it changes.

LinkComponent#active

activeprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:570 Accessed as a classname binding to apply the LinkComponent's activeClass CSS class to the element when the link is active. A LinkComponent is considered active when its currentWhen property is true or the application's current route is the route the LinkComponent would trigger transitions into. The currentWhen property can match against multiple routes by separating route names using the (space) character.

LinkComponent#click event

clickprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:487 Triggers the LinkComponent's routing behavior. If eventName is changed to a value other than click the routing behavior will trigger on that custom event instead.