Skip to content

Commit 44e60a6

Browse files
committed
Don't show Success when Saving...
1 parent a567dd5 commit 44e60a6

File tree

1 file changed

+2
-3
lines changed
  • Firmware/RTK_Everywhere/AP-Config/src

1 file changed

+2
-3
lines changed

Firmware/RTK_Everywhere/AP-Config/src/main.js

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -507,13 +507,12 @@ function sendData() {
507507
function showError(id, errorText) {
508508
ge(id + 'Error').innerHTML = '<br>Error: ' + errorText;
509509
}
510-
511510
function clearError(id) {
512511
ge(id + 'Error').innerHTML = '';
513512
}
514513

515514
function showSuccess(id, msg) {
516-
ge(id + 'Success').innerHTML = '<br>Success: ' + msg;
515+
ge(id + 'Success').innerHTML = '<br>' + msg;
517516
}
518517
function clearSuccess(id) {
519518
ge(id + 'Success').innerHTML = '';
@@ -1222,7 +1221,7 @@ function confirmDataReceipt() {
12221221
//Determine which function sent the original data
12231222
if (sendDataTimeout != null) {
12241223
clearTimeout(sendDataTimeout);
1225-
showSuccess('saveBtn', "All Saved!");
1224+
showSuccess('saveBtn', "Success: All Saved");
12261225
}
12271226
else {
12281227
console.log("Unknown owner of confirmDataReceipt");

0 commit comments

Comments
 (0)