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

Location#getHash()

getHashprivate Defined in packages/ember-routing/lib/location/api.js:181 Available since 1.4.0 Returns the current location.hash by parsing location.href since browsers inconsistently URL-decode location.hash. https://bugzilla.mozilla.org/show_bug.cgi?id=483304

DS.Model.relationshipNames

relationshipNamesObjectstatic Defined in addon/-private/system/relationships/ext.js:366 A hash containing lists of the model's relationships, grouped by the relationship kind. 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 Blog from 'app/mo

DS.Model#isLoaded

isLoaded{Boolean} Defined in addon/-private/system/model/model.js:79 If this property is true the record is in the loaded state. A record enters this state when its data is populated. Most of a record's lifecycle is spent inside substates of the loaded state. Example var record = store.createRecord('model'); record.get('isLoaded'); // true store.findRecord('model', 1).then(function(model) { model.get('isLoaded'); // true });