You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrading from 1.8.2 to 1.8.3 (to address the Safai/Webkit initial loading bug),
images (using a container in my case) did not load dynamically.
To get both working (Safari and the dynamically loading) I simply copied the old function back in:
Line #147:
/* Force initial check if images should appear. */
$(window).load(function() {
update();
});
$(document).ready(function() {
update();
});
just FYI the function I use to "dynamically" assign a lazyload (as I have around 100 containers with several pictures on one page, I cannot initialize all lazyloaders at once due to performance):
After upgrading from 1.8.2 to 1.8.3 (to address the Safai/Webkit initial loading bug),
images (using a container in my case) did not load dynamically.
To get both working (Safari and the dynamically loading) I simply copied the old function back in:
Line #147:
/* Force initial check if images should appear. */
$(window).load(function() {
update();
});
$(document).ready(function() {
update();
});
just FYI the function I use to "dynamically" assign a lazyload (as I have around 100 containers with several pictures on one page, I cannot initialize all lazyloaders at once due to performance):
$("img.lazy").show().lazyload({
effect : "fadeIn",
placeholder: "images/loading.gif",
container: $('#scroller'+scroller)
});
while the sroller variable is the id of the container that I want to load dynamically after an event fires (click, scroll).
The text was updated successfully, but these errors were encountered: