Completed
Pull Request — master (#772)
by Phil
114:05 queued 109:39
created

$(ꞌdocumentꞌ).ready   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
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