|
@@ -1543,7 +1543,7 @@ var Reveal = (function(){
|
|
|
function navigateLeft() {
|
|
|
|
|
|
|
|
|
- if( availableRoutes().left && isOverview() || previousFragment() === false ) {
|
|
|
+ if( availableRoutes().left && ( isOverview() || previousFragment() === false ) ) {
|
|
|
slide( indexh - 1 );
|
|
|
}
|
|
|
|
|
@@ -1552,7 +1552,7 @@ var Reveal = (function(){
|
|
|
function navigateRight() {
|
|
|
|
|
|
|
|
|
- if( availableRoutes().right && isOverview() || nextFragment() === false ) {
|
|
|
+ if( availableRoutes().right && ( isOverview() || nextFragment() === false ) ) {
|
|
|
slide( indexh + 1 );
|
|
|
}
|
|
|
|