Thread Starter
joxws
(@joxws)
The div with contents is set to visibility:hidden via #teaser-holder and the spinner is shown all the time. Tracked this down to griffin.js below, probably, but I am not sure how to fix it.
if($(‘body’).hasClass(‘blog’) || $(‘body’).hasClass(‘search-results’) || $(‘body’).hasClass(‘archive’)) {
$(‘#teaser-holder’).masonry({
itemSelector: ‘.teaser’
});
$(‘.spinner’).hide();
$(‘#teaser-holder’).css(‘visibility’,’visible’);
$(‘#teaser-holder’).masonry(‘bindResize’);
}
});