Completed
Push — master ( 71d6d3...01b46b )
by Pedro
09:22
created

public/js/app.js   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 6
c 0
b 0
f 0
nc 1
dl 0
loc 7
rs 10
nop 0
1
(function () {
2
    'use strict';
3
    global.$ = require('../../node_modules/jquery/dist/jquery.min.js');
4
    global.jQuery = global.$;
5
    require('../../node_modules/bootstrap/dist/js/bootstrap.min.js');
6
    var dotHover = require('./hoverDot.js');
0 ignored issues
show
Unused Code introduced by
The variable dotHover seems to be never used. Consider removing it.
Loading history...
7
})();
8