mirror of https://github.com/espruino/BangleApps
Just removed `btn:` as this doesn't work anyway (the callback is called with `1` as an argument so `load` would fail) and back via button is added automatically #2139 #2140
parent
75066fae86
commit
ca206def94
|
@ -71,6 +71,5 @@ function drawImage() {
|
|||
setTimeout(drawInfo, 1000);
|
||||
Bangle.setUI({
|
||||
mode : "custom",
|
||||
back : load,
|
||||
btn : load
|
||||
back : load
|
||||
});
|
||||
|
|
|
@ -49,8 +49,7 @@
|
|||
drawInfo();
|
||||
Bangle.setUI({
|
||||
mode : "custom",
|
||||
back : load,
|
||||
btn : load
|
||||
back : load
|
||||
})
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue