BangleApps/apps/keytimer/boot.js

11 lines
346 B
JavaScript
Raw Normal View History

2022-11-06 04:05:47 +00:00
const keytimer_common = require("keytimer-com.js");
//Only start the timeout if the timer is running
if (keytimer_common.state.running) {
setTimeout(() => {
//Check now to avoid race condition
if (Bangle.keytimer_ACTIVE === undefined) {
load('keytimer-ring.js');
}
}, keytimer_common.getTimeLeft());
}