view tests/js-timer/timer-repeat.js @ 220:2c1ff48c3fcb

Irccd: style
author David Demelier <markand@malikania.fr>
date Thu, 23 Jun 2016 13:43:37 +0200
parents 6635b9187d71
children
line wrap: on
line source

count = 0;

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

    t.start();
}