X-Git-Url: https://scm.cri.ensmp.fr/git/Portfolio.git/blobdiff_plain/1ea27804743fca19dca58a1f8e662ccf7787f652..6f4e2f7cda25365c0ca9d1597270200d049daa61:/skins/photo_lightbox_viewer.js diff --git a/skins/photo_lightbox_viewer.js b/skins/photo_lightbox_viewer.js index c649dc2..8dfbaf4 100644 --- a/skins/photo_lightbox_viewer.js +++ b/skins/photo_lightbox_viewer.js @@ -11,12 +11,13 @@ var Lightbox; var reSelected = /.*selected.*/; -Lightbox = function(grid, toolbar, complete) { +Lightbox = function(grid, toolbar, complete, container_type) { var self = this; this.grid = grid; this._buildSlidesIndex(); // set this.slides and this.lastSlide; this.fetchingDisabled = false; this.complete = complete; + this.container_type = container_type; this.toolbar = toolbar; if (toolbar) { this.toolbarFixed = false; @@ -374,7 +375,9 @@ Lightbox.prototype.fetchTail = function() { var url = absolute_url() + '/portfolio_thumbnails_tail?start:int=' + String(this.slides.length) + - '&size:int=10'; + '&size:int=10' + + '&container_type=' + + this.container_type; req.open('GET', url, true); req.send(); };