Skip to content
This repository has been archived by the owner on Jun 11, 2019. It is now read-only.

Commit

Permalink
fuck you apple
Browse files Browse the repository at this point in the history
  • Loading branch information
jakevis committed Apr 3, 2018
1 parent b442726 commit 10b8697
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 45 deletions.
44 changes: 0 additions & 44 deletions Queercon/src/assets/json/events.json

This file was deleted.

49 changes: 48 additions & 1 deletion Queercon/src/pages/events/events.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,54 @@ export class EventsDetailsPage {
}

@Component({
templateUrl: 'events.html',
//templateUrl: 'events.html',

template: `
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Events</ion-title>
</ion-navbar>
</ion-header>
<ion-content>
<ion-list>
<ion-card *ngFor="let item of items" (click)="openEventDetailsPage(item)">
<ion-card-header>
{{ item.title }}
</ion-card-header>
<ion-card-content>
{{ item.summary }}
</ion-card-content>
</ion-card>
</ion-list>
</ion-content>
`

})
export class EventsPage {
/* Remove in staging *///private webWiew: any = window;
Expand Down

0 comments on commit 10b8697

Please sign in to comment.