Ember.deprecateFunc()

deprecateFunc (message, options, func) Functionprivate Defined in packages/ember-debug/lib/index.js:91 Alias an old, deprecated method with its new counterpart. Display a deprecation warning with the provided message and a stack trace (Chrome and Firefox only) when the assigned method is called. In a production build, this method is defined as an empty function (NOP). Ember.oldMethod = Ember.deprecateFunc('Please use the new, updated method', Ember.newMethod); Parameters: message String

Enumerable#hasEnumerableObservers

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

DefaultResolver#translateToContainerFullname()

translateToContainerFullname (type, name) private Defined in packages/ember-application/lib/system/resolver.js:450 Converts provided name from the backing namespace into a container lookup name. Examples: App.FooBarHelper -> helper:foo-bar App.THelper -> helper:t Parameters: type String name String

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).

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.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

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

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

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

HistoryLocation#initState()

initStateprivate Defined in packages/ember-routing/lib/location/history_location.js:33 Used to set state on first call to setURL