Advertisement
Guest User

Untitled

a guest
Feb 25th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <ion-split-panel>
  2. <ion-menu [content]="content" when="xs">
  3. <ion-header>
  4. <ion-toolbar>
  5. <ion-title>Menu</ion-title>
  6. </ion-toolbar>
  7. </ion-header>
  8.  
  9. <ion-content>
  10. <ion-list>
  11. <button menuClose ion-item *ngFor="let p of pages"
  12. (click)="openPage(p)">
  13. {{p.title}}
  14. </button>
  15. </ion-list>
  16. </ion-content>
  17.  
  18. </ion-menu>
  19.  
  20. <ion-nav main [root]="rootPage" #content swipeBackEnabled="false"></ion-nav>
  21. </ion-split-panel>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement