ux/Lightbox.js
[roojs1] / ux / Lightbox.js
index cbd5c6d..1903892 100644 (file)
@@ -443,11 +443,11 @@ Roo.apply(Roo.ux.Lightbox.prototype,
         // once image is preloaded, resize image container
 
         imgPreloader.on('load', function() {
-            Roo.log(this.imageArray);
+            
             this.lightboximage.dom.src = this.imageArray[this.activeImage].href || 
                 this.imageArray[this.activeImage].dom.href || this.imageArray[this.activeImage].dom.src;
             
-            this.resizeImageContainer(imgPreloader.getWidth(), imgPreloader.getHeight());
+            this.resizeImageContainer(this.imageArray[this.activeImage].dom.lwidth || imgPreloader.getWidth(), this.imageArray[this.activeImage].dom.lheight || imgPreloader.getHeight());
             imgPreloader.remove();
         }, this);
         imgPreloader.dom.src = this.imageArray[this.activeImage].href || 
@@ -471,11 +471,13 @@ Roo.apply(Roo.ux.Lightbox.prototype,
         
         //fixme need better calcs.
         var w = window;
+        Roo.log(w);
         var ww = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
         var wh = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
         
         ww -= 150;
         wh -= 150;
+        Roo.log(ww);
         // get new width and height
         var bs =  this.borderSize * 2;