view tests/js-timer/timer-pending.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();

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