view tests/js-timer/timer-repeat.js @ 274:750157368a42

CMake: add documentation to plugin targets
author David Demelier <markand@malikania.fr>
date Wed, 28 Sep 2016 13:39:15 +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();
}