Issues (22)

resources/assets/js/responsiveGallery.js (1 issue)

1
2
$(document).ready(function () {
3
    
4
    // You have to create a `Bricklayer` instance for every Bricklayer container you have.
5
    $(".responsiveGallery").each(function(){    
6
        var bricklayer = new window.Bricklayer(this);
0 ignored issues
show
The variable bricklayer seems to be never used. Consider removing it.
Loading history...
7
    });
8
    
9
});
10