Completed
Push — master ( bca88f...074f85 )
by Thomas
12:45 queued 10s
created

js/rotacion_cup.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 16
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 2
c 1
b 0
f 0
dl 0
loc 16
rs 10
cc 0
nc 1
mnd 0
bc 2
fnc 2
bpm 1
cpm 1
noi 2
1
$('document').ready(function(){
2
3
        var value = 0
0 ignored issues
show
Coding Style introduced by
There should be a semicolon.

Requirement of semicolons purely is a coding style issue since JavaScript has specific rules about semicolons which are followed by all browsers.

Further Readings:

Loading history...
4
                $(".bigshotContainer").rotate({
5
                bind:
6
                {
7
                    click: function(){
8
                    value +=90;
9
                    $('.bigshotContainer').rotate({ animateTo:value})
0 ignored issues
show
Coding Style introduced by
There should be a semicolon.

Requirement of semicolons purely is a coding style issue since JavaScript has specific rules about semicolons which are followed by all browsers.

Further Readings:

Loading history...
10
                    }
11
                }
12
                });
13
14
15
16
});
17