X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/57d1397f78113cec462ac3316d8cd01b29a6d5c3..626c374dc3f412d481ebc56386ab7f6bdd05b5e9:/project/static/js/jquery.lazyload.js
diff --git a/project/static/js/jquery.lazyload.js b/project/static/js/jquery.lazyload.js
index 25c94869..ea3de6ff 100644
--- a/project/static/js/jquery.lazyload.js
+++ b/project/static/js/jquery.lazyload.js
@@ -31,7 +31,13 @@
|| belowViewport(container, this, settings.threshold)) {
$(this).html(settings.placeholder);
} else {
- $(this).html('');
+ $(this).html('');
+ var self = this;
+ $('').load(function() {
+ if ($(this).height() > $(self).height()) {
+ $(self).height($(this).height());
+ }
+ }).appendTo(this);
}
})
}