LinkComponent#activeClass

activeClassStringprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:401 The CSS class to apply to LinkComponent's element when its active property is true. Default: active

ViewTargetActionSupport#handleEvent()

handleEvent (eventName, evt) private Defined in packages/ember-views/lib/mixins/view_support.js:495 Handle events from Ember.EventDispatcher Parameters: eventName String evt Event

Component#didUpdate()

didUpdatepublic Defined in packages/ember-htmlbars/lib/component.js:451 Available since 1.13.0 Called when the component has updated and rerendered itself. Called only during a rerender, not during an initial render.

DefaultResolver#lookupDescription()

lookupDescription (fullName) protected Defined in packages/ember-application/lib/system/resolver.js:255 Returns a human-readable description for a fullName. Used by the Application namespace in assertions to describe the precise name of the class that Ember is looking for, rather than container keys. Parameters: fullName String the lookup string

MutableArray#pushObjects()

pushObjects (objects) Ember.Arraypublic Defined in packages/ember-runtime/lib/mixins/mutable_array.js:185 Add the objects in the passed numerable to the end of the array. Defers notifying observers of the change until all objects are added. let colors = ['red']; colors.pushObjects(['yellow', 'orange']); // ['red', 'yellow', 'orange'] Parameters: objects Ember.Enumerable the objects to add Returns: Ember.Array receiver

DS.Adapter#shouldBackgroundReloadAll()

shouldBackgroundReloadAll (store, snapshotRecordArray) Boolean Defined in addon/adapter.js:619 Available since 1.13.0 This method is used by the store to determine if the store should reload a record array after the store.findAll method resolves with a cached record array. This method is only checked by the store when the store is returning a cached record array. If this method returns true the store will re-fetch all records from the adapter. For example, if you do not want to fetch comple

DS.RESTAdapter#dataForRequest()

dataForRequest (params) Objectpublic Defined in addon/adapters/rest.js:1196 Get the data (body or query params) for a request. Parameters: params Object Returns: Object data

Array#slice()

slice (beginIndex, endIndex) Arraypublic Defined in packages/ember-runtime/lib/mixins/array.js:324 Returns a new array that is a slice of the receiver. This implementation uses the observable array methods to retrieve the objects for the new slice. let arr = ['red', 'green', 'blue']; arr.slice(0); // ['red', 'green', 'blue'] arr.slice(0, 2); // ['red', 'green'] arr.slice(1, 100); // ['green', 'blue'] Parameters: beginIndex Number (Optional) index to begin slicing from. en

DS.BuildURLMixin#urlForFindHasMany()

urlForFindHasMany (id, modelName, snapshot) String Defined in addon/-private/adapters/build-url-mixin.js:244 Builds a URL for fetching a async hasMany relationship when a url is not provided by the server. Example: app/adapters/application.js import DS from 'ember-data'; export default DS.JSONAPIAdapter.extend({ urlForFindHasMany(id, modelName, snapshot) { let baseUrl = this.buildURL(id, modelName); return `${baseUrl}/relationships`; } }); Parameters: id String modelName

Registry#describe()

describe (fullName) Stringprivate Defined in packages/container/lib/registry.js:262 A hook that can be used to describe how the resolver will attempt to find the factory. For example, the default Ember .describe returns the full class name (including namespace) where Ember's resolver expects to find the fullName. Parameters: fullName String Returns: String described fullName