LinkComponent#tabindex

tabindexpublic Defined in packages/ember-htmlbars/lib/components/link-to.js:382 Sets the tabindex attribute of the LinkComponent's HTML element. Default: null

Copyable#willMergeMixin()

willMergeMixinprivate Defined in packages/ember-runtime/lib/mixins/controller_content_model_alias_deprecation.js:19 Available since 1.4.0

Services

Services An Ember.Service is an Ember object that lives for the duration of the application, and can be made available in different parts of your application. Services are useful for features that require shared state or persistent connections. Example uses of services might include: User/session authentication. Geolocation. WebSockets. Server-sent events or notifications. Server-backed API calls that may not fit Ember Data. Third-party APIs. Logging. Defining Services Services can be gener

DS.Model#isError

isError{Boolean} Defined in addon/-private/system/model/model.js:244 If true the adapter reported that it was unable to save local changes to the backend for any reason other than a server-side validation error. Example record.get('isError'); // false record.set('foo', 'valid value'); record.save().then(null, function() { record.get('isError'); // true });

DataAdapter#releaseMethods

releaseMethodsprivate Defined in packages/ember-extension-support/lib/data_adapter.js:105 Available since 1.3.0 Stores all methods that clear observers. These methods will be called on destruction.

DS.RESTAdapter#normalizeErrorResponse()

normalizeErrorResponse (status, headers, payload) Arrayprivate Defined in addon/adapters/rest.js:1104 Parameters: status Number headers Object payload Object Returns: Array errors payload

DS.JSONSerializer#normalizeDeleteRecordResponse()

normalizeDeleteRecordResponse (store, primaryModelClass, payload, id, requestType) Object Defined in addon/serializers/json.js:374 Available since 1.13.0 Parameters: store DS.Store primaryModelClass DS.Model payload Object id String|Number requestType String Returns: Object JSON-API Document

DS.RESTSerializer#serializePolymorphicType()

serializePolymorphicType (snapshot, json, relationship) Inherited from DS.JSONSerializer but overwritten in addon/serializers/rest.js:742 You can use this method to customize how polymorphic objects are serialized. By default the REST Serializer creates the key by appending Type to the attribute and value from the model's camelcased model name. Parameters: snapshot DS.Snapshot json Object relationship Object

Ember.canInvoke()

canInvoke (obj, methodName) Booleanprivate Defined in packages/ember-metal/lib/utils.js:316 Checks to see if the methodName exists on the obj. let foo = { bar: function() { return 'bar'; }, baz: null }; Ember.canInvoke(foo, 'bar'); // true Ember.canInvoke(foo, 'baz'); // false Ember.canInvoke(foo, 'bat'); // false Parameters: obj Object The object to check for the method methodName String The method name to check for Returns: Boolean

Engine#resolver

resolverpublic Inherited from Ember.Engine but overwritten in packages/ember-application/lib/system/engine.js:427 Set this to provide an alternate class to Ember.DefaultResolver