mirror of https://github.com/espruino/BangleApps
stlap: use closure to avoid hanging onto `arguments` in `showMainMenu`
parent
9ea17e7f4a
commit
087f6d0f1a
|
@ -53,7 +53,7 @@ function view(fileName) {
|
||||||
let lapMenu = {
|
let lapMenu = {
|
||||||
'': {
|
'': {
|
||||||
'title': fileNameToDateString(fileName),
|
'title': fileNameToDateString(fileName),
|
||||||
'back': showMainMenu
|
'back': () => showMainMenu()
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
lapMenu[`Total time: ${msToHumanReadable(fileData[fileData.length - 1])}`] = () => { };
|
lapMenu[`Total time: ${msToHumanReadable(fileData[fileData.length - 1])}`] = () => { };
|
||||||
|
|
Loading…
Reference in New Issue