view tests/js-timer/timer-repeat.js @ 97:30dd01c8ac4e

Irccd: fix Linux
author David Demelier <markand@malikania.fr>
date Thu, 21 Apr 2016 13:24:26 +0200
parents 1158cffe5a5e
children 6635b9187d71
line wrap: on
line source

count = 0;

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

	t.start();
}