DS.BuildURLMixin#buildURL()

buildURL (modelName, id, snapshot, requestType, query) String Defined in addon/-private/adapters/build-url-mixin.js:33 Builds a URL for a given type and optional ID. By default, it pluralizes the type's name (for example, 'post' becomes 'posts' and 'person' becomes 'people'). To override the pluralization see pathForType. If an ID is specified, it adds the ID to the path generated for the type, separated by a /. When called by RESTAdapter.findMany() the id and snapshot parameters will be ar

Inflector#irregular()

irregular (singular, plural) Defined in node_modules/ember-inflector/addon/lib/system/inflector.js:201 Parameters: singular String plural String

Ember.BOOTED

BOOTEDBooleanprivate Defined in packages/ember-runtime/lib/index.js:228 Whether searching on the global for new Namespace instances is enabled. This is only exported here as to not break any addons. Given the new visit API, you will have issues if you treat this as a indicator of booted. Internally this is only exposing a flag in Namespace.

AutoLocation

Ember.AutoLocation Namespace PRIVATE Defined in: packages/ember-routing/lib/location/auto_location.js:25 Module: ember-routing Ember.AutoLocation will select the best location option based off browser support with the priority order: history, hash, none. Clean pushState paths accessed by hashchange-only browsers will be redirected to the hash-equivalent and vice versa so future transitions are consistent. Keep in mind that since some of your users will use HistoryLocation, your server must

Templates.helpers.hash()

hash (options) Objectpublic Defined in packages/ember-htmlbars/lib/helpers/hash.js:6 Use the {{hash}} helper to create a hash to pass as an option to your components. This is specially useful for contextual components where you can just yield a hash: handlebars {{yield (hash name='Sarah' title=office )}} Would result in an object such as: js { name: 'Sarah', title: this.get('office') } Where the title is bound to updates of the office property. Parameters: options Object Retu

DS.Errors#errorsByAttributeName

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

Enumerable#mapBy()

mapBy (key) Arraypublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:361 Similar to map, this specialized function returns the value of the named property on all items in the enumeration. Parameters: key String name of the property Returns: Array The mapped array.

Application#_prepareForGlobalsMode()

_prepareForGlobalsModeprivate Defined in packages/ember-application/lib/system/application.js:380 Enable the legacy globals mode by allowing this application to act as a global namespace. See the docs on the _globalsMode property for details. Most of these features are already deprecated in 1.x, so we can stop using them internally and try to remove them.

Ember

Ember Namespace PUBLIC Defined in: packages/ember-metal/lib/core.js:8 Module: ember-metal This namespace contains all Ember methods and functions. Future versions of Ember may overwrite this namespace and therefore, you should avoid adding any new properties. At the heart of Ember is Ember-Runtime, a set of core functions that provide cross-platform compatibility and object property observing. Ember-Runtime is small and performance-focused so you can use it alongside other cross-platform l

RSVP.allSettled()

allSettled (entries, label) Promisestatic Defined in bower_components/rsvp/lib/rsvp/all-settled.js:19 RSVP.allSettled is similar to RSVP.all, but instead of implementing a fail-fast method, it waits until all the promises have returned and shows you all the results. This is useful if you want to handle multiple promises' failure states together as a set. Returns a promise that is fulfilled when all the given promises have been settled. The return promise is fulfilled with an array of the st