This commit is contained in:
Adam Bradley
2015-05-12 14:39:22 -05:00
parent 79c17318fb
commit 0c935944cb
9 changed files with 178 additions and 302 deletions

View File

@ -0,0 +1,13 @@
export class NavController {
constructor() {
}
push() {
return this.nav.push.apply(this.nav, arguments);
}
pop() {
return this.nav.pop.apply(this.nav, arguments);
}
}