awaken-direct-democracy
Version:
This is the functional skeleton / working mock up of a disruptive app to increase voter turnout and participation driven at the start by just one person - Tom Atkinson in New Zealand - after watching in horror the signing of the TPPA in Auckland February
21 lines (15 loc) • 470 B
text/typescript
import { Component } from '@angular/core';
import { PopoverController } from 'ionic-angular';
import { PopoverPage } from '../about-popover/about-popover';
({
selector: 'page-about',
templateUrl: 'about.html'
})
export class AboutPage {
conferenceDate = '2047-05-17';
constructor(public popoverCtrl: PopoverController) { }
presentPopover(event) {
let popover = this.popoverCtrl.create(PopoverPage);
popover.present({ ev: event });
}
}