Merge pull request #2631 from christian-classics-ethereal-library/squarePresentationLinear

Navigation Arrows: Fix visibility bug in linear navigation mode
master
Hakim El Hattab 2020-03-10 10:40:18 +01:00 committed by GitHub
commit 5d179ed4c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -2735,6 +2735,11 @@ export default function( revealElement, options ) {
}
}
if ( horizontalSlides.length > 1 && config.navigationMode === 'linear' ) {
routes.right = routes.right || routes.down;
routes.left = routes.left || routes.up;
}
// Reverse horizontal controls for rtl
if( config.rtl ) {
let left = routes.left;