|
After a cursory glance, I'm guessing it's in this area:
objImagePreloader.onload = function () {
$('#lightbox-image').attr('src', settings.imageArray[settings.activeImage][0]);
_resize_container_image_box(objImagePreloader.width, objImagePreloader.height);
objImagePreloader.onload = function () { };
};
You'd still eat the bandwidth cost of loading up the full size image, but it will scale using the height and width properties on the img tag.
Of course, you could write another httpHandler similar to ImageHandler to do the scaling on the fly...
|