view tests/js-timer/timer-pending.js @ 123:c7fee63ccf92

Irccd: new configuration mechanism, #397
author David Demelier <markand@malikania.fr>
date Tue, 10 May 2016 21:27:40 +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();

	/* Force the plugin to wait so that timer push some events in the irccd's queue */
	Irccd.System.sleep(3);
	t.stop();
}