ux/Lightbox.js
[roojs1] / ux / Lightbox.js
index be3edd8..c21bc12 100644 (file)
@@ -443,11 +443,16 @@ Roo.apply(Roo.ux.Lightbox.prototype,
         // once image is preloaded, resize image container
 
         imgPreloader.on('load', function() {
+            Roo.log('this.imageArray[this.activeImage].dom.lwidth');
+            Roo.log(this.imageArray[this.activeImage].dom.lwidth);
+            
+            Roo.log('this.imageArray[this.activeImage].dom.lheight');
+            Roo.log(this.imageArray[this.activeImage].dom.lheight);
             
             this.lightboximage.dom.src = this.imageArray[this.activeImage].href || 
                 this.imageArray[this.activeImage].dom.href || this.imageArray[this.activeImage].dom.src;
-            Roo.log(this.lightboximage.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 || 
@@ -476,6 +481,7 @@ Roo.apply(Roo.ux.Lightbox.prototype,
         
         ww -= 150;
         wh -= 150;
+        
         // get new width and height
         var bs =  this.borderSize * 2;