Maybe just try:
setTimeout(function() { Bangle.showClock(); }, 100);
Bangle.showClock(); calls load(), and load() doesn't do anything if called while initialising (so you don't get into boot loops).
Bangle.showClock();
load()
@Gordon started
Espruino is a JavaScript interpreter for low-power Microcontrollers. This site is both a support community for Espruino and a place to share what you are working on.
Maybe just try:
Bangle.showClock();
callsload()
, andload()
doesn't do anything if called while initialising (so you don't get into boot loops).