diff --git a/dist/ionic-angular.js b/dist/ionic-angular.js index 35c749476e..c00254fc18 100644 --- a/dist/ionic-angular.js +++ b/dist/ionic-angular.js @@ -68,6 +68,12 @@ angular.module('ionic.ui.nav', ['ionic.service']) navBar: { shouldGoBack: function() { }, + show: function() { + this.isVisible = true; + }, + hide: function() { + this.isVisible = false; + }, setTitle: function(title) { $scope.navController.title = title; }, @@ -101,15 +107,16 @@ angular.module('ionic.ui.nav', ['ionic.service']) .directive('navBar', function() { return { restrict: 'E', - require: '^navController', + require: '^navCtrl', transclude: true, replace: true, scope: true, - template: '