bugfix. ménage.
authorBenoît Pin <benoit.pin@gmail.com>
Sun, 3 Aug 2014 08:21:45 +0000 (10:21 +0200)
committerBenoît Pin <benoit.pin@gmail.com>
Sun, 3 Aug 2014 08:21:45 +0000 (10:21 +0200)
skins/photo_film_viewer.js

index f1f650d..b86e94d 100644 (file)
@@ -750,12 +750,11 @@ FilmSlider.prototype.startThumbnailsLoadQueue = function(evt) {
        }
        if (leftSize > rightSize) {
                for (i = this.center - rightSize - 1 ; i >= 0 ; i--) {
-                       console.log(i);
                        this.thumbnailsLoadingOrder.push(thumbnails[i]);
                }
        }
        else if (leftSize < rightSize) {
-               for (i = this.center + leftSize ; i < thumbnails.length ; i++) {
+               for (i = this.center + leftSize + 1 ; i < thumbnails.length ; i++) {
                        this.thumbnailsLoadingOrder.push(thumbnails[i]);
                }
        }