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';