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

$(ꞌdocumentꞌ).ready   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 16

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 16
rs 9.4285
cc 1
nc 1
nop 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A ady 0 4 1
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