NativeArray

Ember.NativeArray Class PUBLIC Uses: Ember.MutableArray Uses: Ember.Observable Uses: Ember.Copyable Defined in: packages/ember-runtime/lib/system/native_array.js:24 Module: ember-runtime The NativeArray mixin contains the properties needed to make the native Array support Ember.MutableArray and all of its dependent APIs. Unless you have EmberENV.EXTEND_PROTOTYPES or EmberENV.EXTEND_PROTOTYPES.Array set to false, this will be applied automatically. Otherwise you can apply the mixin at anyti

Application#eventDispatcher

eventDispatcherEmber.EventDispatcherpublic Defined in packages/ember-application/lib/system/application.js:220 The Ember.EventDispatcher responsible for delegating events to this application's views. The event dispatcher is created by the application at initialization time and sets up event listeners on the DOM element described by the application's rootElement property. See the documentation for Ember.EventDispatcher for more information. Default: null

DS.Model#isReloading

isReloading{Boolean} Defined in addon/-private/system/model/model.js:265 If true the store is attempting to reload the record form the adapter. Example record.get('isReloading'); // false record.reload(); record.get('isReloading'); // true

Ember.computed.readOnly()

readOnly (dependentKey) Ember.ComputedPropertypublic Defined in packages/ember-runtime/lib/computed/computed_macros.js:580 Available since 1.5.0 Where computed.oneWay provides oneWay bindings, computed.readOnly provides a readOnly one way binding. Very often when using computed.oneWay one does not also want changes to propagate back up, as they will replace the value. This prevents the reverse flow, and also throws an exception when it occurs. Example let User = Ember.Object.extend({ firs

DS.ManyArray#reload()

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

DS.JSONSerializer#normalize()

normalize (typeClass, hash) Object Inherited from DS.Serializer but overwritten in addon/serializers/json.js:491 Normalizes a part of the JSON payload returned by the server. You should override this method, munge the hash and call super if you have generic normalization to do. It takes the type of the record that is being normalized (as a DS.Model class), the property where the hash was originally found, and the hash to normalize. You can use this method, for example, to normalize undersco

Ember.A()

AEmber.NativeArraypublic Defined in packages/ember-runtime/lib/system/native_array.js:108 Creates an Ember.NativeArray from an Array like object. Does not modify the original object. Ember.A is not needed if EmberENV.EXTEND_PROTOTYPES is true (the default value). However, it is recommended that you use Ember.A when creating addons for ember or when you can not guarantee that EmberENV.EXTEND_PROTOTYPES will be true. Example export default Ember.Component.extend({ tagName: 'ul', className

DS.RESTAdapter#query()

query (store, type, query) Promise Inherited from DS.Adapter but overwritten in addon/adapters/rest.js:475 Called by the store in order to fetch a JSON array for the records that match a particular query. The query method makes an Ajax (HTTP GET) request to a URL computed by buildURL, and returns a promise for the resulting payload. The query argument is a simple JavaScript object that will be passed directly to the server as parameters. Parameters: store DS.Store type DS.Model que

OrderedSet#clear()

clearprivate Defined in packages/ember-metal/lib/map.js:89

Application#reset()

resetpublic Defined in packages/ember-application/lib/system/application.js:609 Reset the application. This is typically used only in tests. It cleans up the application in the following order: Deactivate existing routes Destroy all objects in the container Create a new application container Re-route to the existing url Typical Example: let App; run(function() { App = Ember.Application.create(); }); module('acceptance test', { setup: function() { App.reset(); } }); test('first