11 lines
171 B
JavaScript
11 lines
171 B
JavaScript
|
(function($) {
|
||
|
|
||
|
var headers = $('.available-headers');
|
||
|
headers.imagesLoaded( function() {
|
||
|
headers.masonry({
|
||
|
itemSelector: '.default-header'
|
||
|
});
|
||
|
});
|
||
|
|
||
|
})(jQuery);
|