KITCHEN SINK

This commit is contained in:
Max Lynch
2015-05-30 20:46:11 -05:00
parent 24946ff120
commit 0bd6915a98
14 changed files with 240 additions and 13503 deletions

View File

@ -5,10 +5,23 @@ export class NavController {
this._nav = nav;
}
/**
* Clear the history stack.
*/
clear() {
return this._nav.clear();
}
/**
* Push an ew component onto the history stack.
*/
push() {
return this._nav.push.apply(this._nav, arguments);
}
/**
* Pop the top most (visible) component off the history stack.
*/
pop() {
return this._nav.pop.apply(this._nav, arguments);
}