MutableArray#[]

[]public Inherited from Ember.Enumerable but overwritten in packages/ember-runtime/lib/mixins/array.js:281 This is the handler for the special array content property. If you get this property, it will return this. If you set this property to a new array, it will replace the current content. This property overrides the default property defined in Ember.Enumerable. Returns: this

Routing

Introduction Imagine we are writing a web app for managing a blog. At any given time, we should be able to answer questions like What post are they looking at? and Are they editing it? In Ember.js, the answer to these questions is determined by the URL. The URL can be set in a few ways: The user loads the app for the first time. The user changes the URL manually, such as by clicking the back button or by editing the address bar. The user clicks a link within the app. Some other event in the a

EventDispatcher#registeredActions

registeredActionsObjectprivate Defined in packages/ember-views/lib/system/action_manager.js:8 Global action id hash.

Test#testing

testing{Boolean}public Defined in packages/ember-testing/lib/ext/application.js:45 Available since 1.3.0 This property indicates whether or not this application is currently in testing mode. This is set when setupForTesting is called on the current application. Default: false

Ember.typeOf()

typeOf (item) Stringpublic Defined in packages/ember-runtime/lib/utils.js:55 Returns a consistent type for the passed object. Use this instead of the built-in typeof to get the type of an item. It will return the same result across all browsers and includes a bit more detail. Here is what will be returned: | Return Value | Meaning | |---------------|------------------------------------------------------| | 'string' | String primitive or Str

DS.JSONSerializer#extractRelationships()

extractRelationships (modelClass, resourceHash) Object Defined in addon/serializers/json.js:660 Returns the resource's relationships formatted as a JSON-API "relationships object". http://jsonapi.org/format/#document-resource-object-relationships Parameters: modelClass Object resourceHash Object Returns: Object

DS.JSONAPISerializer#pushPayload()

pushPayload (store, payload) Defined in addon/serializers/json-api.js:213 Parameters: store DS.Store payload Object

Application#_globalsMode

_globalsModeBooleanprivate Defined in packages/ember-application/lib/system/application.js:295 Whether the application should be configured for the legacy "globals mode". Under this mode, the Application object serves as a global namespace for all classes. let App = Ember.Application.create({ ... }); App.Router.reopen({ location: 'none' }); App.Router.map({ ... }); App.MyComponent = Ember.Component.extend({ ... }); This flag also exposes other internal APIs that assumes the exis

DS.Store#find()

find (modelName, id, options) Promiseprivate Defined in addon/-private/system/store.js:429 Parameters: modelName String id String|Integer options Object Returns: Promise promise

Router#startRouting()

startRoutingprivate Defined in packages/ember-routing/lib/system/router.js:181 Initializes the current router instance and sets up the change handling event listeners used by the instances location implementation. A property named initialURL will be used to determine the initial URL. If no value is found / will be used.