DS.Model.relationshipsByName

relationshipsByNameEmber.Mapstatic Defined in addon/-private/system/relationships/ext.js:450 A map whose keys are the relationships of a model and whose values are relationship descriptors. For example, given a model with this definition: app/models/blog.js import DS from 'ember-data'; export default DS.Model.extend({ users: DS.hasMany('user'), owner: DS.belongsTo('user'), posts: DS.hasMany('post') }); This property would contain the following: import Ember from 'ember'; import Blo

ViewTargetActionSupport#append()

appendEmber.Viewprivate Defined in packages/ember-views/lib/mixins/view_support.js:229 Appends the view's element to the document body. If the view does not have an HTML representation yet the element will be generated automatically. If your application uses the rootElement property, you must append the view within that element. Rendering views outside of the rootElement is not supported. Note that this method just schedules the view to be appended; the DOM element will not be appended to t

DS.ManyArray#reload()

reloadpublic Defined in addon/-private/system/many-array.js:236

Enumerable#compact()

compactArraypublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:774 Returns a copy of the array with all null and undefined elements removed. let arr = ['a', null, 'c', undefined]; arr.compact(); // ['a', 'c'] Returns: Array the array without null and undefined elements.

HistoryLocation#replaceURL()

replaceURL (path) private Defined in packages/ember-routing/lib/location/history_location.js:105 Uses history.replaceState to update the url without a page reload or history modification. Parameters: path String

Transition#abort()

abortTransitionpublic Defined in bower_components/router.js/lib/router/transition.js:189 Aborts the Transition. Note you can also implicitly abort a transition by initiating another transition while a previous one is underway. Returns: Transition this transition

DS.JSONSerializer#normalizeResponse()

normalizeResponse (store, primaryModelClass, payload, id, requestType) Object Inherited from DS.Serializer but overwritten in addon/serializers/json.js:202 Available since 1.13.0 The normalizeResponse method is used to normalize a payload from the server to a JSON-API Document. http://jsonapi.org/format/#document-structure This method delegates to a more specific normalize method based on the requestType. To override this method with a custom one, make sure to call return this._super(store,

Ember.validatePropertyInjections()

validatePropertyInjections (factory) private Defined in packages/ember-runtime/lib/inject.js:39 Available since 1.10.0 Validation function that runs per-type validation functions once for each injected type encountered. Parameters: factory Object The factory object

TextSupport#action

actionStringprivate Defined in packages/ember-views/lib/mixins/text_support.js:143 The action to be sent when the user presses the return key. This is similar to the {{action}} helper, but is fired when the user presses the return key when editing a text field, and sends the value of the field as the context. Default: null

Array#indexOf()

indexOf (object, startAt) Numberpublic Defined in packages/ember-runtime/lib/mixins/array.js:370 Returns the index of the given object's first occurrence. If no startAt argument is given, the starting location to search is 0. If it's negative, will count backward from the end of the array. Returns -1 if no match is found. let arr = ['a', 'b', 'c', 'd', 'a']; arr.indexOf('a'); // 0 arr.indexOf('z'); // -1 arr.indexOf('a', 2); // 4 arr.indexOf('a', -1); // 4 arr.indexOf('