DataAdapter#attributeLimit

attributeLimitprivate Defined in packages/ember-extension-support/lib/data_adapter.js:79 Available since 1.3.0 The number of attributes to send as columns. (Enough to make the record identifiable). Default: 3

DS.AbortError

DS.AbortError Class Defined in: addon/adapters/errors.js:126 Module: ember-data

Enumerable#lastObject

lastObjectObjectpublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:177 Helper method returns the last object from a collection. If your enumerable contains only one object, this method should always return that object. If your enumerable is empty, this method should return undefined. let arr = ['a', 'b', 'c']; arr.get('lastObject'); // 'c' let arr = []; arr.get('lastObject'); // undefined Returns: Object the last object or undefined

Ember.run._addQueue()

_addQueue (name, after) private Defined in packages/ember-metal/lib/run_loop.js:668 Add a new named queue after the specified queue. The queue to add will only be added once. Parameters: name String the name of the queue to add. after String the name of the queue to add after.

Enumerable#without()

without (value) Ember.Enumerablepublic Defined in packages/ember-runtime/lib/mixins/enumerable.js:790 Returns a new enumerable that excludes the passed value. The default implementation returns an array regardless of the receiver type. If the receiver does not contain the value it returns the original enumerable. let arr = ['a', 'b', 'a', 'c']; arr.without('a'); // ['b', 'c'] Parameters: value Object Returns: Ember.Enumerable

Creating Your App

Creating Your App Welcome to the Ember Tutorial! This tutorial is meant to introduce basic Ember concepts while creating a professional looking application. If you get stuck at any point during the tutorial feel free to visit https://github.com/ember-learn/super-rentals for a working example of the completed app. Ember CLI, Ember's command line interface, provides a standard project structure, a set of development tools, and an addon system. This allows Ember developers to focus on building a

Engine#runInstanceInitializers()

runInstanceInitializersprivate Defined in packages/ember-application/lib/system/engine.js:154 Available since 1.12.0

DataAdapter#getRecordFilterValues()

getRecordFilterValues (record) Objectprivate Defined in packages/ember-extension-support/lib/data_adapter.js:458 Returns the values of filters defined by getFilters. Parameters: record Object The record instance. Returns: Object The filter values.

RSVP.all()

all (array, label) static Inherited from RSVP but overwritten in bower_components/rsvp/lib/rsvp/all.js:3 This is a convenient alias for RSVP.Promise.all. Parameters: array Array Array of promises. label String An optional label. This is useful for tooling.

HistoryLocation#getState()

getStateObjectprivate Defined in packages/ember-routing/lib/location/history_location.js:122 Get the current history.state. Checks for if a polyfill is required and if so fetches this._historyState. The state returned from getState may be null if an iframe has changed a window's history. Returns: Object state