This commit is contained in:
Adam Bradley
2015-05-12 21:15:54 -05:00
parent 7f9384be8d
commit 0e63850a8f
6 changed files with 24 additions and 23 deletions

View File

@@ -7,14 +7,13 @@ import {SecondPage} from './second-page'
@Component()
@View({
templateUrl: 'pages/first-page.html',
directives: []
templateUrl: 'pages/first-page.html'
})
export class FirstPage {
constructor(
nav: NavController
//nav: NavController
) {
this.nav = nav;
//this.nav = nav;
}
push() {

View File

@@ -1,7 +1,7 @@
import {Component, Directive} from 'angular2/src/core/annotations_impl/annotations';
import {View} from 'angular2/src/core/annotations_impl/view';
import {NavController} from 'ionic/ionic'
import {NavController} from 'ionic/ionic';
@Component()