From: Benoît Pin Date: Sun, 3 Aug 2014 08:21:45 +0000 (+0200) Subject: bugfix. ménage. X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/commitdiff_plain/2e2f4ddd5166f4ddc77c688040cc697f84dbfcf1?ds=sidebyside bugfix. ménage. --- diff --git a/skins/photo_film_viewer.js b/skins/photo_film_viewer.js index f1f650d..b86e94d 100644 --- a/skins/photo_film_viewer.js +++ b/skins/photo_film_viewer.js @@ -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]); } }