DS.JSONSerializer#keyForLink()

keyForLink (key, kind) String Defined in addon/serializers/json.js:1485 keyForLink can be used to define a custom key when deserializing link properties. Parameters: key String kind String `belongsTo` or `hasMany` Returns: String normalized key

Computed Properties

Computed Properties What are Computed Properties? In a nutshell, computed properties let you declare functions as properties. You create one by defining a computed property as a function, which Ember will automatically call when you ask for the property. You can then use it the same way you would any normal, static property. It's super handy for taking one or more normal properties and transforming or manipulating their data to create a new value. Computed properties in action We'll start wit

Web Development

Web Development Joining a web development community can be a challenge within itself, especially when all the resources you visit assume you're familiar with other technologies that you're not familiar with. Our goal is to help you avoid that mess and come up to speed as fast as possible; you can consider us your internet friend. CDN Content Delivery Network This is typically a paid service you can use to get great performance for your app. Many CDNs act as caching proxies to your origin serv

DS.RESTAdapter#_ajaxRequest()

_ajaxRequest (options) private Defined in addon/adapters/rest.js:1031 Parameters: options Object jQuery ajax options to be used for the ajax request

TextField#max

maxStringpublic Defined in packages/ember-htmlbars/lib/components/text_field.js:155 Available since 1.4.0 The max attribute of input element used with type="number" or type="range". Default: null

Engine#runInitializers()

runInitializersprivate Defined in packages/ember-application/lib/system/engine.js:131

Array#hasArrayObservers

hasArrayObserversBooleanpublic Defined in packages/ember-runtime/lib/mixins/array.js:506 Becomes true whenever the array currently has observers watching changes on the array.

DS.Model#ready event

ready Defined in addon/-private/system/model/model.js:422 Fired when the record is ready to be interacted with, that is either loaded from the server or created locally.

Location

Ember.Location Namespace PRIVATE Defined in: packages/ember-routing/lib/location/api.js:10 Module: ember-routing Ember.Location returns an instance of the correct implementation of the location API. Implementations You can pass an implementation name (hash, history, none) to force a particular implementation to be used in your application. HashLocation Using HashLocation results in URLs with a # (hash sign) separating the server side URL portion of the URL from the portion that is used by

Test#setupForTesting()

setupForTestingprivate Inherited from Ember.Test but overwritten in packages/ember-testing/lib/setup_for_testing.js:14 Available since 1.5.0 Sets Ember up for testing. This is useful to perform basic setup steps in order to unit test. Use App.setupForTesting to perform integration tests (full application testing).