view tests/js-timer/timer-single.js @ 391:d51a95714abb

Docs: sync html with irccdctl help messages
author David Demelier <markand@malikania.fr>
date Fri, 23 Dec 2016 13:42:26 +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();
}