EngineInstance#engine

engineEmber.Engineprivate Defined in packages/ember-application/lib/system/engine-instance.js:31 The base Engine for which this is an instance.

Observable#notifyPropertyChange()

notifyPropertyChange (keyName) Ember.Observablepublic Defined in packages/ember-runtime/lib/mixins/observable.js:318 Convenience method to call propertyWillChange and propertyDidChange in succession. Parameters: keyName String The property key to be notified about. Returns: Ember.Observable

Templates.helpers.loc()

loc (str) public Defined in packages/ember-htmlbars/lib/helpers/loc.js:9 Calls Ember.String.loc with the provided string. This is a convenient way to localize text within a template. For example: Ember.STRINGS = { '_welcome_': 'Bonjour' }; <div class='message'> {{loc '_welcome_'}} </div> <div class='message'> Bonjour </div> See Ember.String.loc for how to set up localized string references. Parameters: str String The string to format.

ObjectProxy

Ember.ObjectProxy Class PUBLIC Extends: Ember._ProxyMixin Defined in: packages/ember-runtime/lib/system/object_proxy.js:4 Module: ember Ember.ObjectProxy forwards all properties not defined by the proxy itself to a proxied content object. object = Ember.Object.create({ name: 'Foo' }); proxy = Ember.ObjectProxy.create({ content: object }); // Access and change existing properties proxy.get('name') // 'Foo' proxy.set('name', 'Bar'); object.get('name') // 'Bar' // Crea

Ember.FEATURES

Ember.FEATURES Namespace PUBLIC Defined in: packages/ember-metal/lib/features.js:5 Module: ember The hash of enabled Canary features. Add to this, any canary features before creating your application. Alternatively (and recommended), you can also define EmberENV.FEATURES if you need to enable features flagged at runtime.

Transition#method()

method (method) Transitionpublic Defined in bower_components/router.js/lib/router/transition.js:223 Sets the URL-changing method to be employed at the end of a successful transition. By default, a new Transition will just use updateURL, but passing 'replace' to this method will cause the URL to update using 'replaceWith' instead. Omitting a parameter will disable the URL change, allowing for transitions that don't update the URL at completion (this is also used for handleURL, since the URL

ControllerMixin#_qpChanged()

_qpChangedprivate Defined in packages/ember-routing/lib/ext/controller.js:31

PromiseProxyMixin#then()

then (callback) RSVP.Promisepublic Defined in packages/ember-runtime/lib/mixins/promise_proxy.js:165 An alias to the proxied promise's then. See RSVP.Promise.then. Parameters: callback Function Returns: RSVP.Promise

NoneLocation#onUpdateURL()

onUpdateURL (callback) private Defined in packages/ember-routing/lib/location/none_location.js:72 Register a callback to be invoked when the path changes. These callbacks will execute when the user presses the back or forward button, but not after setURL is invoked. Parameters: callback Function

DS.Snapshot#adapterOptions

adapterOptions{Object} Defined in addon/-private/system/snapshot.js:33 A hash of adapter options