Passed
Pull Request — master (#22)
by Ronan
07:39 queued 02:00
created

resources/js/components/_app.monitor.js   A

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 15
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 9
c 0
b 0
f 0
dl 0
loc 15
rs 10
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 0
1
/** global: App **/
2
var App = App || {};
3
4
App.Monitor = {
5
6
    defaults: {
7
    },
8
    options: {},
9
10
    init: function (options) {
11
        this.options = $.extend({}, this.defaults, options);
12
        this.bindUI();
13
    },
14
    bindUI: function () {
15
    },
16
}
17