Completed
Push — master ( 474a37...c076fd )
by Konrad
06:07
created

assets/js/_tooltip.js   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 13
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 0
eloc 6
nc 1
dl 0
loc 13
rs 10
c 0
b 0
f 0
wmc 1
mnd 0
bc 1
fnc 1
bpm 1
cpm 1
noi 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A _tooltip.js ➔ $ 0 7 1
1
/**
2
 *    Tooltip
3
 *
4
 *    @tableofcontent
5
 *      1. Dependencies
6
 *      2. Functions
7
 *
8
 */
9
10
/**
11
 *     @section 1. Dependencies
12
 */
13
14
const tippy = require('tippy.js/dist/tippy.standalone.js');
15
16
/**
17
 *     @section 2. Functions
18
 */
19
20
$(function() {
21
    tippy('[title]', {
22
        arrow: true,
23
        arrowType: 'round',
24
        size: 'small'
25
    });
26
});
27
28
// end of _tooltip.js
29