Completed
Push — master ( 2eb621...9cfdf2 )
by Patrick
03:31
created

js/index.js   A

Complexity

Total Complexity 4
Complexity/F 1.33

Size

Lines of Code 30
Function Count 3

Duplication

Duplicated Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
cc 0
c 2
b 0
f 0
nc 1
dl 0
loc 30
rs 10
wmc 4
mnd 1
bc 4
fnc 3
bpm 1.3333
cpm 1.3333
noi 0

3 Functions

Rating   Name   Duplication   Size   Complexity  
A index.js ➔ pageInit 0 4 1
A index.js ➔ clear_konami 0 5 1
A index.js ➔ konami 0 15 2
1
var times = 0;
2
3
function clear_konami()
4
{
5
    $('#konami').remove();
6
    times++;
7
}
8
9
function konami()
10
{
11
    var marquee = $('<marquee/>', {behavior: 'slide', direction: 'left', id: 'konami'});
12
    var img = $('<img/>', {src: '/img/common/logo.svg'});
13
    if(times >= 1)
14
    {
15
        marquee.append("Here we go again...");
16
    }
17
    img.appendTo(marquee);
18
    var audio = $('<audio/>', {autoplay: true});
19
    $('<source/>', {src: '/media/contra.ogg', type: 'audio/ogg'}).appendTo(audio);
20
    audio.appendTo(marquee);
21
    marquee.appendTo($('#content'));
22
    setTimeout(clear_konami, 5000);
23
}
24
25
function pageInit()
26
{
27
    cheet('up up down down left right left right b a', konami);
28
}
29
30
$(pageInit);
31