+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.slides.length;
+ req.open('GET', url, true);
+ req.send();
+};
+
+Lightbox.prototype._refreshGrid = function(req) {
+ var doc = req.responseXML.documentElement;
+ var i, node;
+ for (i=0 ; i<doc.childNodes.length ; i++) {
+ node = doc.childNodes[i];
+ if (node.nodeType === 1) {
+ this.slides[i] = this.grid.replaceChild(getCopyOfNode(node), this.slides[i]);
+ }
+ }
+};
+
+Lightbox.prototype.fetchTail = 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._appendTail(req)
+ }
+ break;
+ }
+ };
+
+ var url = absolute_url() +
+ '/portfolio_thumbnails_tail?start:int=' +
+ String(this.slides.length + 1 ) +
+ '&size:int=10';
+ req.open('GET', url, true);
+ req.send();
+};
+
+Lightbox.prototype._appendTail = function(req) {
+ var doc = req.responseXML.documentElement;
+ var i, node;
+ for (i=0 ; i<doc.childNodes.length ; i++) {
+ node = doc.childNodes[i];
+ if (node.nodeType === 1) {
+ this.lastSlide = this.grid.appendChild(getCopyOfNode(node));
+ this.slides.push(this.lastSlide);
+ }
+ }
+ this.fetchingDisabled = false;
+ if (doc.getAttribute('nomore')) {
+ this.complete = true;
+ console.info('complete');
+ }
+ this.windowScrollGridHandler();
+};
+