view tests/js-timer/timer-single.js @ 362:33c1ee29feef

Misc: add .txt to metadata files
author David Demelier <markand@malikania.fr>
date Thu, 01 Dec 2016 12:57:29 +0100
parents 6635b9187d71
children
line wrap: on
line source

count = 0;

function onLoad()
{
    t = new Irccd.Timer(Irccd.Timer.Single, 500, function () {
        count += 1;
    });

    t.start();
}