UNPKG

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

23 lines (16 loc) 522 B
import { Component } from '@angular/core'; import { NavController, NavParams } from 'ionic-angular'; import { SessionDetailPage } from '../session-detail/session-detail'; @Component({ selector: 'page-speaker-detail', templateUrl: 'speaker-detail.html' }) export class SpeakerDetailPage { speaker: any; constructor(public navCtrl: NavController, public navParams: NavParams) { this.speaker = this.navParams.data; } goToSessionDetail(session) { this.navCtrl.push(SessionDetailPage, session); } }