refactor(popover): remove ion-page from template

This commit is contained in:
Dan Bucholtz
2018-01-09 16:02:57 -06:00
parent f2dff0da2e
commit fd0aa45461

View File

@@ -6,25 +6,23 @@ import { App } from '@ionic/angular';
@Component({
template: `
<ion-page>
<ion-list>
<ion-item (click)="close('http://ionicframework.com/docs/v2/getting-started')">
<ion-label>Learn Ionic</ion-label>
</ion-item>
<ion-item (click)="close('http://ionicframework.com/docs/v2')">
<ion-label>Documentation</ion-label>
</ion-item>
<ion-item (click)="close('http://showcase.ionicframework.com')">
<ion-label>Showcase</ion-label>
</ion-item>
<ion-item (click)="close('https://github.com/ionic-team/ionic')">
<ion-label>GitHub Repo</ion-label>
</ion-item>
<ion-item (click)="support()">
<ion-label>Support</ion-label>
</ion-item>
</ion-list>
</ion-page>
<ion-list>
<ion-item (click)="close('http://ionicframework.com/docs/v2/getting-started')">
<ion-label>Learn Ionic</ion-label>
</ion-item>
<ion-item (click)="close('http://ionicframework.com/docs/v2')">
<ion-label>Documentation</ion-label>
</ion-item>
<ion-item (click)="close('http://showcase.ionicframework.com')">
<ion-label>Showcase</ion-label>
</ion-item>
<ion-item (click)="close('https://github.com/ionic-team/ionic')">
<ion-label>GitHub Repo</ion-label>
</ion-item>
<ion-item (click)="support()">
<ion-label>Support</ion-label>
</ion-item>
</ion-list>
`
})
export class PopoverPage {