We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 302f6c5 commit ee71504Copy full SHA for ee71504
lib/web/fotorama/fotorama.js
@@ -2660,7 +2660,7 @@ fotoramaVersion = '4.6.4';
2660
if (opts.navtype === 'slides') {
2661
var pos = readPosition($navShaft, opts.navdir);
2662
pos >= navShaftTouchTail.max ? isLeftDisable = true : isLeftDisable = false;
2663
- pos <= navShaftTouchTail.min ? isRightDisable = true : isRightDisable = false;
+ (pos <= Math.round(navShaftTouchTail.min)) ? isRightDisable = true : isRightDisable = false;
2664
}
2665
$thumbArrLeft
2666
.toggleClass(arrDisabledClass, isLeftDisable)
0 commit comments