mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
Toderp signup and nav controller fixes
This commit is contained in:
@ -118,6 +118,24 @@ ionic.controllers.NavController.prototype = {
|
||||
return last;
|
||||
},
|
||||
|
||||
/**
|
||||
* Show the NavBar (if any)
|
||||
*/
|
||||
showNavBar: function() {
|
||||
if(this.navBar) {
|
||||
this.navBar.show();
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Hide the NavBar (if any)
|
||||
*/
|
||||
hideNavBar: function() {
|
||||
if(this.navBar) {
|
||||
this.navBar.hide();
|
||||
}
|
||||
},
|
||||
|
||||
// Update the nav bar after a push or pop
|
||||
_updateNavBar: function() {
|
||||
if(!this.getTopController() || !this.navBar) {
|
||||
|
||||
Reference in New Issue
Block a user