- 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 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();