mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
10 lines
239 B
JavaScript
10 lines
239 B
JavaScript
(function(mode, cb) {
|
|
if (Bangle.btnWatches) {
|
|
Bangle.btnWatches.forEach(w => {
|
|
try { clearWatch(w); } catch (e) {}
|
|
});
|
|
delete Bangle.btnWatches;
|
|
}
|
|
// this is just a replacement for E.clearWatches for the moment
|
|
})
|