Skip to content

Commit

Permalink
fixing icons
Browse files Browse the repository at this point in the history
  • Loading branch information
lathonez committed Feb 17, 2016
1 parent 6687137 commit c954c15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/clickerForm/clickerForm.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
</ion-item>
</ion-col>
<ion-col>
<button type="submit" block secondary outline><icon add-circle></icon></button>
<button type="submit" block secondary outline><ion-icon name="add-circle"></ion-icon></button>
</ion-col>
</ion-row>
</form>
2 changes: 1 addition & 1 deletion app/pages/clickerList/clickerList.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ion-row *ngFor="#clicker of clickerService.getClickers()">
<ion-col width-80><clicker-button [clicker]="clicker"></clicker-button></ion-col>
<ion-col>
<button block danger outline (click)="clickerService.removeClicker(clicker.id)"><icon trash></icon></button>
<button block danger outline (click)="clickerService.removeClicker(clicker.id)"><ion-icon name="trash"></ion-icon></button>
</ion-col>
</ion-row>
</ion-content>

0 comments on commit c954c15

Please sign in to comment.