assets/alert.js   A
last analyzed

Complexity

Total Complexity 2
Complexity/F 1

Size

Lines of Code 6
Function Count 2

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 5
c 0
b 0
f 0
dl 0
loc 6
rs 10
wmc 2
mnd 0
bc 0
fnc 2
bpm 0
cpm 1
noi 0
1
document.getElementById('alert-close').addEventListener('click', () => {
2
  document.getElementById('alert').style.opacity = 0;
3
  setTimeout(() => {
4
    document.getElementById('alert').style.display = 'none'
5
  }, 200)
6
})
7