Skip to content

Commit

Permalink
fix(navbar): re-align title after show
Browse files Browse the repository at this point in the history
Closes #3064
  • Loading branch information
adamdbradley committed Apr 6, 2015
1 parent a0c3c55 commit 0e1689d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions js/angular/controller/navBarController.js
Expand Up @@ -358,6 +358,7 @@ function($scope, $element, $attrs, $compile, $timeout, $ionicNavBarDelegate, $io
self.visibleBar = function(shouldShow) {
if (shouldShow && !isVisible) {
$element.removeClass(CSS_HIDE);
self.align();
} else if (!shouldShow && isVisible) {
$element.addClass(CSS_HIDE);
}
Expand Down

0 comments on commit 0e1689d

Please sign in to comment.