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

@ -10,7 +10,7 @@ import {IonicView, DeviceMotion} from 'ionic/ionic';
<ion-title>Device Motion</ion-title>
</ion-navbar>
<ion-content padding>
<div *ng-if="accel">{{accel.x}} {{accel.y}} {{accel.z}}</div>
<div *ngIf="accel">{{accel.x}} {{accel.y}} {{accel.z}}</div>
</ion-content>
`
})