mirror of https://github.com/espruino/BangleApps
semicolons
parent
92ddfe9403
commit
d58c29f8d0
|
@ -823,7 +823,7 @@ function showAppSettings(app) {
|
||||||
try {
|
try {
|
||||||
appSettings = eval(appSettings);
|
appSettings = eval(appSettings);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(`${app.name} settings error:`, e)
|
console.log(`${app.name} settings error:`, e);
|
||||||
return showError(/*LANG*/'Error in settings');
|
return showError(/*LANG*/'Error in settings');
|
||||||
}
|
}
|
||||||
if (typeof appSettings !== "function") {
|
if (typeof appSettings !== "function") {
|
||||||
|
@ -833,7 +833,7 @@ function showAppSettings(app) {
|
||||||
// pass showAppSettingsMenu as "back" argument
|
// pass showAppSettingsMenu as "back" argument
|
||||||
appSettings(()=>showAppSettingsMenu());
|
appSettings(()=>showAppSettingsMenu());
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.log(`${app.name} settings error:`, e)
|
console.log(`${app.name} settings error:`, e);
|
||||||
return showError(/*LANG*/'Error in settings');
|
return showError(/*LANG*/'Error in settings');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue