Binding#disconnect()

disconnectEmber.Bindingpublic Defined in packages/ember-metal/lib/binding.js:196 Disconnects the binding instance. Changes will no longer be relayed. You will not usually need to call this method. Returns: Ember.Binding `this`

Binding#copy()

copyEmber.Bindingpublic Defined in packages/ember-metal/lib/binding.js:51 This copies the Binding so it can be connected to another object. Returns: Ember.Binding `this`

Binding#connect()

connect (obj) Ember.Bindingpublic Defined in packages/ember-metal/lib/binding.js:135 Attempts to connect this binding instance so that it can receive and relay changes. This method will raise an exception if you have not set the from/to properties yet. Parameters: obj Object The root object for this binding. Returns: Ember.Binding `this`

Binding Element Attributes

Binding Element Attributes In addition to normal text, you may also want to have your templates contain HTML elements whose attributes are bound to the controller. For example, imagine your controller has a property that contains a URL to an image: <div id="logo"> <img src={{logoUrl}} alt="Logo"> </div> This generates the following HTML: <div id="logo"> <img src="http://www.example.com/images/logo.png" alt="Logo"> </div> If you use data binding with a

Binding

Ember.Binding Class DEPRECATED PUBLIC Defined in: packages/ember-metal/lib/binding.js:353 Module: ember-metal An Ember.Binding connects the properties of two objects so that whenever the value of one property changes, the other property will be changed also. Automatic Creation of Bindings with /^*Binding/-named Properties. You do not usually create Binding objects directly but instead describe bindings in your class or object definition using automatic binding detection. Properties ending

Backburner

Backburner Class PRIVATE Defined in: packages/ember-metal/lib/index.js:281 Module: ember-metal

AutoLocation#_getHashPath()

_getHashPathprivate Defined in packages/ember-routing/lib/location/auto_location.js:278

AutoLocation#userAgent

userAgentprivate Defined in packages/ember-routing/lib/location/auto_location.js:75 Available since 1.5.1 Default: environment.history

AutoLocation#rootURL

rootURLprivate Defined in packages/ember-routing/lib/location/auto_location.js:99 Available since 1.5.1 Default: '/'

AutoLocation#location

locationprivate Defined in packages/ember-routing/lib/location/auto_location.js:41 Default: environment.location