summaryrefslogtreecommitdiffhomepage
path: root/js/main.js
blob: 7f3bd6c477cbc9adaf002fe6156c027411f3a845 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
var timeWastingClock = new FlipClock($('.time-wasting-clock'), {
    autoStart:false
});

var $timeWastingClockRunning = false;

var activityClock = new FlipClock($('.activity-countdown'), {
    autoStart:false,
    countdown:true
});

function timeWastingClockToggle()
{
    if ($timeWastingClockRunning)
    {
        $('#timeWastingClockGo').html('Start timer (Hotkey: j)');
        timeWastingClock.stop();
        $timeWastingClockRunning = false;
    }
    else
    {
        $('#timeWastingClockGo').html('Stop timer (Hotkey: j)');
        timeWastingClock.start();
        $timeWastingClockRunning = true;
    }
}

$(document).bind('keydown', 'j', timeWastingClockToggle);

$(document).ready(function(){
    $('#timeWastingClockGo').button();
    $('#timeWastingClockGo').click(timeWastingClockToggle);

    $('#timeWastingClockReset').button();
    $('#timeWastingClockReset').click(function() {
        if (timeWastingClock.getTime() != 0)
        {
            var $timeWastingClockResetConfirm = confirm("Are you sure?");
            if ($timeWastingClockResetConfirm)
            {
                if ($timeWastingClockRunning)
                {
                    $('#timeWastingClockGo').html('Start timer (Hotkey: j)');
                    timeWastingClock.stop();
                    $timeWastingClockRunning = false;
                }
                timeWastingClock.setTime(0);
            }
        }
    });
});