Symptons
Items do not take up full width of the column
Cause
Reload functions misses the masonry options;
var reload = function($container,items){
$container.empty();
$(items).each(function(){
$($container).append($(this));
});
$container.masonry('reloadItems');
$container.masonry();
};
Fix
Last line should be:
Symptons
Items do not take up full width of the column
Cause
Reload functions misses the masonry options;
Fix
Last line should be: