Problem Safari positioning elements #381
Closed
Comments
Sure. It could be something like this $( function() {
// start isotope first on document ready
var $container = $('#my-container-id');
$container.isotope({
// options...
}).imagesLoaded( function() {
// trigger again after images have loaded
$container.isotope('reLayout');
});
// use as a last-resort
$( window ).load( function() {
// trigger again after everything has loaded
$container.isotope('reLayout');
});
}); |
good!! thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
hello is there a way to invoke a refresh of the container after the page loads? I happen with safari elements are merged, not positioned correctly, slightly enlarging the window elements are positioned normally.
http://mbades.com/client/testing998887799fkc_cm
The text was updated successfully, but these errors were encountered: