thibaud-rohmer / PhotoShow

A free web gallery in PHP with drag-n-drop support
http://www.photoshow-gallery.com
502 stars 151 forks source link

Slideshow not cycling correctly #353

Open vletroye opened 6 years ago

vletroye commented 6 years ago

in image_panel.js, when clicking NEXT while being on the last image, PhotoShow is assumed to navigate to the first photo in the linear-pane. And when clicking PREVIOUS while being on the first image, PhotoShow is assumed to navigate to the last photo. But there is a bug IMHO there...

Line 92 should be new_select = $(".linear_panel .item").first(); And line 137 should be new_select = $(".linear_panel .item").last();

Changing these two lines, PhotoShow works as expected. Otherwise, it's stuck respectively on the last/first image...

vletroye commented 6 years ago

I did fork the master branch and have create a Pull Request with, among others, that fix: https://github.com/thibaud-rohmer/PhotoShow/pull/355