demos(docs): ng-if to ngIf

This commit is contained in:
Drew Rygh
2016-01-07 10:05:01 -06:00
parent 959025fee1
commit c695591fed
6 changed files with 10 additions and 10 deletions

View File

@ -12,7 +12,7 @@ import {IonicView, Device} from 'ionic/ionic';
<ion-content padding>
<h2>Device</h2>
<button primary outline (click)="doDevice()">Get Device</button>
<div *ng-if="device">
<div *ngIf="device">
Device name: {{device.name}}
</div>
</ion-content>