Skip to content

Commit

Permalink
Make some LinkComponent properties public
Browse files Browse the repository at this point in the history
(cherry picked from commit c13987d)
  • Loading branch information
btecu authored and rwjblue committed Aug 3, 2015
1 parent c5b1b50 commit fc38050
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions packages/ember-routing-views/lib/views/link.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var LinkComponent = EmberComponent.extend({
Used to determine when this LinkComponent is active.
@property currentWhen
@private
@public
*/
'current-when': null,

Expand All @@ -61,7 +61,7 @@ var LinkComponent = EmberComponent.extend({
@property title
@default null
@private
@public
**/
title: null,

Expand All @@ -70,7 +70,7 @@ var LinkComponent = EmberComponent.extend({
@property rel
@default null
@private
@public
**/
rel: null,

Expand All @@ -79,7 +79,7 @@ var LinkComponent = EmberComponent.extend({
@property tabindex
@default null
@private
@public
**/
tabindex: null,

Expand All @@ -89,7 +89,7 @@ var LinkComponent = EmberComponent.extend({
@since 1.8.0
@property target
@default null
@private
@public
**/
target: null,

Expand Down Expand Up @@ -134,7 +134,7 @@ var LinkComponent = EmberComponent.extend({
@property replace
@type Boolean
@default false
@private
@public
**/
replace: false,

Expand All @@ -146,7 +146,7 @@ var LinkComponent = EmberComponent.extend({
@property attributeBindings
@type Array | String
@default ['title', 'rel', 'tabindex', 'target']
@private
@public
*/
attributeBindings: ['href', 'title', 'rel', 'tabindex', 'target'],

Expand All @@ -157,7 +157,7 @@ var LinkComponent = EmberComponent.extend({
@property classNameBindings
@type Array
@default ['active', 'loading', 'disabled']
@private
@public
*/
classNameBindings: linkComponentClassNameBindings,

Expand Down

0 comments on commit fc38050

Please sign in to comment.