-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated to work with angular@2.0.0-rc.1 and ionic-angular@2.0.0-beta.7
- Loading branch information
Chris Metz
committed
Jun 3, 2016
1 parent
f999436
commit 191271a
Showing
6 changed files
with
43 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
<ion-menu id="leftMenu" [content]="content"> | ||
<ion-menu #leftMenu [content]="content"> | ||
|
||
<ion-toolbar primary> | ||
<ion-title>{{appName}}</ion-title> | ||
</ion-toolbar> | ||
|
||
<ion-content> | ||
<ion-list> | ||
<button ion-item *ngFor="#page of pages" (click)="openPage(page)"> | ||
<button ion-item *ngFor="let page of pages" (click)="openPage(page)"> | ||
<ion-icon name="{{page.icon}}"></ion-icon> | ||
{{page.title | translate}} | ||
</button> | ||
</ion-list> | ||
</ion-content> | ||
|
||
</ion-menu> | ||
|
||
<ion-nav id="nav" [root]="rootPage" #content swipe-back-enabled="false"></ion-nav> | ||
<ion-nav [root]="rootPage" #content swipe-back-enabled="false"></ion-nav> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters