Skip to content

Commit

Permalink
Fixed #1273
Browse files Browse the repository at this point in the history
  • Loading branch information
Çağatay Çivici committed Nov 13, 2016
1 parent 2cd400e commit 905d9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/steps/steps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {Router} from '@angular/router';
[ngClass]="{'ui-state-highlight':(i === activeIndex),'ui-state-default':(i !== activeIndex),
'ui-state-disabled':(i !== activeIndex && readonly),'ui-state-hover':(menuitem == hoveredItem&&!readonly)}">
<a class="ui-menuitem-link" (click)="itemClick($event, item, i)" (mouseenter)="hoveredItem=menuitem" (mouseleave)="hoveredItem=null">
<span class="ui-steps-number">{{i}}</span>
<span class="ui-steps-number">{{i + 1}}</span>
<span class="ui-steps-title">{{item.label}}</span>
</a>
</li>
Expand Down

0 comments on commit 905d9b3

Please sign in to comment.