view tests/js-timer/timer-repeat.js @ 196:bdeda4baf684

Irccd: use the shared_ptr directly in Module
author David Demelier <markand@malikania.fr>
date Tue, 07 Jun 2016 20:49:47 +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();
}