diff --git a/apps/recorder/interface.html b/apps/recorder/interface.html index 19ad0680b..88da2fb4c 100644 --- a/apps/recorder/interface.html +++ b/apps/recorder/interface.html @@ -4,7 +4,7 @@
-
+
@@ -73,6 +73,7 @@ ${track.map(pt=>` ${0|pt.Skin}\n`).join("")} document.body.removeChild(a); window.URL.revokeObjectURL(url); }, 0); + showToast("Download finished.", "toast-success"); } function saveGPX(track, title) { @@ -117,6 +118,7 @@ function saveGPX(track, title) { document.body.removeChild(a); window.URL.revokeObjectURL(url); }, 0); + showToast("Download finished.", "toast-success"); } function saveCSV(track, title) { @@ -129,6 +131,7 @@ function saveCSV(track, title) { }).join(",")+"\n"; }); Util.saveCSV(title, csv); + showToast("Download finished.", "toast-success"); } function trackLineToObject(headers, l) { @@ -148,7 +151,6 @@ function downloadTrack(filename, callback) { var headers = lines.shift().split(","); var track = lines.map(l=>trackLineToObject(headers, l)); callback(track); - showToast("Download finished.", "toast-success"); }); }