mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-20 12:29:55 +08:00
KITCHEN SINK
This commit is contained in:
@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user