davide-casiraghi/laravel-smart-blog

View on GitHub
resources/assets/js/bricklayerBlogLayout.js

Summary

Maintainability
A
0 mins
Test Coverage

$(document).ready(function () {
    
    // You have to create a `Bricklayer` instance for every Bricklayer container you have.
    $(".blogBricklayer").each(function(){    
        var bricklayer = new window.Bricklayer(this);
    });
    
});