Navbar Changes from 0.9.22 & 0.9.23

I just swapped in 0.9.23 from 0.9.22. Wow. Lot’s of differences and weird ones.

Here is what 0.9.22 looked like:

Here is 0.9.23 with no other code changes:

What’s up with those back arrow indicators?

Here is the effective code for these screenshots:

var nextButton = [
    {
        content: 'Next',
        type: 'button-dark button-clear',
        tap: function(e) {
            // Go to the next slide on tap
            $scope.$broadcast('slideBox.nextSlide');
        }
    }
];

var backButton = [
    {
        content: 'Back',
        type: 'button-dark button-clear',
        tap: function(e) {
            // Move to the previous slide
            $scope.$broadcast('slideBox.prevSlide');
        }
    }
];

$scope.leftButtons = backButton;
$scope.rightButtons = nextButton;
$scope.navTitle = 'Welcome';

1 Like

Yeah sorry about that, the latest nightly build has this fixed. We’ll be releasing 0.9.24 this week which has many bug fixes.
http://code.ionicframework.com/#nightly

Thanks @adam Just pulled down nightly and all is well with the world again. thanks for pointing me there.