MutableArray#clear()

clearEmber.Arraypublic Defined in packages/ember-runtime/lib/mixins/mutable_array.js:87 Remove all elements from the array. This is useful if you want to reuse an existing array without having to recreate it. let colors = ['red', 'green', 'blue']; color.length(); // 3 colors.clear(); // [] colors.length(); // 0 Returns: Ember.Array An empty Array.

DS.Model#didCreate event

didCreate Defined in addon/-private/system/model/model.js:444 Fired when a new record is commited to the server.

Service

Ember.Service Class PUBLIC Extends: Ember.Object Defined in: packages/ember-runtime/lib/system/service.js:35 Module: ember

Component#didRender event

didRenderpublic Defined in packages/ember-htmlbars/lib/component.js:385 Available since 1.13.0 Called after a component has been rendered, both on initial render and in subsequent rerenders.

Route#transitionTo()

transitionTo (name, models, options) Transitionpublic Defined in packages/ember-routing/lib/system/route.js:886 Transition the application into another route. The route may be either a single route or route path: this.transitionTo('blogPosts'); this.transitionTo('blogPosts.recentEntries'); Optionally supply a model for the route in question. The model will be serialized into the URL using the serialize hook of the route: this.transitionTo('blogPost', aPost); If a literal is passed (such a

ClassNamesSupport#removeChild()

removeChild (view) Ember.Viewprivate Defined in packages/ember-views/lib/mixins/child_views_support.js:33 Removes the child view from the parent view. Parameters: view Ember.View Returns: Ember.View receiver

ClassNamesSupport

Ember.ClassNamesSupport Class PRIVATE Defined in: packages/ember-views/lib/mixins/class_names_support.js:11 Module: ember-views

Services and Utilities

Services and Utilities For Super Rentals, we want to be able to display a map showing where each rental is. To implement this feature, we will take advantage of several Ember concepts: A component to display a map on each rental listing. A service to keep a cache of rendered maps to use in different places in the application. A utility function to create a map from the Google Maps API. We'll start by displaying the map and work our way back to using the Google Map API. Display Maps With a C

DS.AdapterPopulatedRecordArray#loadRecords()

loadRecords (records, payload) private Defined in addon/-private/system/record-arrays/adapter-populated-record-array.js:65 Parameters: records Array payload Object normalized payload

Freezable#isFrozen

isFrozenBooleanprivate Defined in packages/ember-runtime/lib/mixins/freezable.js:80 Set to true when the object is frozen. Use this property to detect whether your object is frozen or not.