tabs fixes

This commit is contained in:
Adam Bradley
2015-03-23 20:02:33 -05:00
parent 9c92f5d2c9
commit be076d78cb
5 changed files with 74 additions and 50 deletions

View File

@ -0,0 +1,23 @@
import {Ion} from '../ion'
export class NavView extends Ion {
// viewControllers: Stack<ViewController>;
// visibleViewController: ViewController;
// push(viewController) {
// stack.push(viewController)
// }
// pop(viewController) {
// stack.pop(viewController)
// }
// set viewControllers(v) {
// this.viewControllers = v
// }
constructor() {
console.log('construct nav-view')
this.history = [] // <---- would be fancy pants
}
}