tasktimer
tasktimer copied to clipboard
README Variable
https://github.com/onury/tasktimer/blame/master/README.md#L120
if (timer.tickCount >= 3600000) timer.stop();
I think this should be:
if (timer.time.elapsed >= 3600000) timer.stop();
Or:
if (timer.tickCount >= 3600) timer.stop();
Based on the comment that it should stop after an hour.
Right. thanks @dustingraham