nav updates

This commit is contained in:
Adam Bradley
2015-05-04 13:34:00 -05:00
parent b4e66c3f6f
commit e315ebc25f
15 changed files with 182 additions and 183 deletions

View File

@ -0,0 +1,19 @@
import {Component, View, Parent} from 'angular2/angular2'
import {NavController} from 'ionic/components'
@Component()
@View({
templateUrl: 'pages/third-page.html',
directives: []
})
export class ThirdPage {
constructor(
nav: NavController
) {
this.nav = nav
}
pop() {
this.nav.pop()
}
}