LinkComponent#classNameBindings

classNameBindingsArraypublic Inherited from Ember.ClassNamesSupport but overwritten in packages/ember-htmlbars/lib/components/link-to.js:458 By default the {{link-to}} component will bind to the active, loading, and disabled classes. It is discouraged to override these directly. Default: ['active', 'loading', 'disabled', 'ember-transitioning-in', 'ember-transitioning-out']

LinkComponent#attributeBindings

attributeBindingsArray | Stringpublic Defined in packages/ember-htmlbars/lib/components/link-to.js:446 By default the {{link-to}} component will bind to the href and title attributes. It's discouraged that you override these defaults, however you can push onto the array if needed. Default: ['title', 'rel', 'tabindex', 'target']

LinkComponent#activeClass

activeClassStringprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:401 The CSS class to apply to LinkComponent's element when its active property is true. Default: active

LinkComponent#active

activeprivate Defined in packages/ember-htmlbars/lib/components/link-to.js:570 Accessed as a classname binding to apply the LinkComponent's activeClass CSS class to the element when the link is active. A LinkComponent is considered active when its currentWhen property is true or the application's current route is the route the LinkComponent would trigger transitions into. The currentWhen property can match against multiple routes by separating route names using the (space) character.

LinkComponent

Ember.LinkComponent Class PRIVATE Extends: Ember.Component Defined in: packages/ember-htmlbars/lib/components/link-to.js:329 Module: ember-templates Ember.LinkComponent renders an element whose click event triggers a transition of the application's instance of Ember.Router to a supplied route by name. Ember.LinkComponent components are invoked with {{#link-to}}. Properties of this class can be overridden with reopen to customize application-wide behavior.

Library Info

Library Info To see a list of libraries used in your application, click on the Info menu. This view displays the libraries used, along with their version. Registering a Library If you would like to add your own application or library to the list, you can register it using: Ember.libraries.register(libraryName, libraryVersion); Ember Cli If you're using the ember-cli-app-version addon, your application's name and version will be added to the list automatically.

Libraries

Libraries Class PRIVATE Defined in: packages/ember-metal/lib/libraries.js:4 Module: ember Helper class that allows you to register your library with Ember. Singleton created at Ember.libraries.

InstrumentationSupport#instrumentDisplay

instrumentDisplayStringpublic Defined in packages/ember-views/lib/mixins/instrumentation_support.js:14 Used to identify this view during debugging

InstrumentationSupport

Ember.InstrumentationSupport Class PUBLIC Defined in: packages/ember-views/lib/mixins/instrumentation_support.js:8 Module: ember-views

Instrumentation#unsubscribe()

unsubscribe (subscriber) private Defined in packages/ember-metal/lib/instrumentation.js:216 Unsubscribes from a particular event or instrumented block of code. Parameters: subscriber [Object]