view tests/js-timer/timer-single.js @ 325:3d1f32a2b994

Irccdctl: bring back server-cmode
author David Demelier <markand@malikania.fr>
date Sun, 06 Nov 2016 20:59:42 +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();
}