resources/assets/js/responsiveGallery.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 8
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 3
c 0
b 0
f 0
dl 0
loc 8
rs 10
wmc 2
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 1
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
Unused Code introduced by
The variable bricklayer seems to be never used. Consider removing it.
Loading history...
7
    });
8
    
9
});
10