1
0
Fork 0

Merge pull request #3221 from bobrippling/fix/settings-load

settings: fix typo
master
thyttan 2024-02-29 02:04:56 +01:00 committed by GitHub
commit 358996adf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 3 deletions

View File

@ -77,4 +77,5 @@ of 'Select Clock'
calibration was done.
0.67: Rename 'Wake on BTN1/Touch' to 'Wake on Button/Tap' on Bangle.js 2
0.68: Fix syntax error
0.69: Add option to wake on double tap
0.69: Add option to wake on double tap
0.70: Fix load() typo

View File

@ -1,7 +1,7 @@
{
"id": "setting",
"name": "Settings",
"version": "0.69",
"version": "0.70",
"description": "A menu for setting up Bangle.js",
"icon": "settings.png",
"tags": "tool,system",

View File

@ -641,7 +641,7 @@ function showUtilMenu() {
storage.writeJSON("setting.json",s);
E.showAlert(/*LANG*/"Calibrated!").then(() => load("setting.app.js"));
} else {
E.showAlert(/*LANG*/"Please charge Bangle.js for 3 hours and try again").then(() => load("settings.app.js"));
E.showAlert(/*LANG*/"Please charge Bangle.js for 3 hours and try again").then(() => load("setting.app.js"));
}
});
};