Lightbox = function(grid, toolbar) {
var self = this;
this.grid = grid;
+ this.lastSlide = this.grid.children[this.grid.children.length-1];
this.toolbar = toolbar;
if (toolbar) {
this.toolbarFixed = false;
this.toolbarFixed = false;
this.switchToolBarPositioning(false);
}
+ if (window.scrollY > this.lastSlide.firstElementChild.offsetTop - getWindowHeight()) {
+ console.log('À boire !');
+ }
};
Lightbox.prototype.mouseClickHandler = function(evt) {
break;
case 'sorted' :
this.fm.submitButton = undefined;
+ this.refreshGrid();
break;
}
};
}
};
+Lightbox.prototype.refreshGrid = function() {
+ var req = new XMLHttpRequest();
+ self = this;
+ req.onreadystatechange = function() {
+ switch (req.readyState) {
+ case 1 :
+ showProgressImage();
+ break;
+ case 4 :
+ hideProgressImage();
+ if (req.status === 200) {
+ self._refreshGrid(req)
+ }
+ break;
+ }
+ };
+
+ var url = absolute_url() +
+ '/portfolio_thumbnails_tail?start:int=0&size:int=' +
+ this.grid.children.length;
+ req.open('GET', url, true);
+ req.send();
+};
+
+Lightbox.prototype._refreshGrid = function(req) {
+ var doc = req.responseXML.documentElement;
+ var i;
+ var slides = this.grid.children;
+ for (i=0 ; i<doc.children.length ; i++) {
+ this.grid.replaceChild(getCopyOfNode(doc.children[i]), slides[i]);
+ }
+};
+
var _outlineSelectedSlide;
if (browser.isGecko) {