We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ed5594 commit cf7abc5Copy full SHA for cf7abc5
apps/recorder/interface.html
@@ -829,13 +829,11 @@ <h2>Settings</h2>
829
830
switch(task) {
831
case "delete":
832
- if (confirm(`Are you sure you want to delete Track ${trackid}?`)) {
833
- Util.showModal(`Deleting ${filename}...`);
834
- Util.eraseStorageFile(filename, () => {
835
- Util.hideModal();
836
- getTrackList();
837
- });
838
- }
+ Util.showModal(`Deleting ${filename}...`);
+ Util.eraseStorageFile(filename, () => {
+ Util.hideModal();
+ getTrackList();
+ });
839
break;
840
case "downloadkml":
841
downloadTrack(filename, track => saveKML(track, `Bangle.js Track ${trackid}`));
@@ -906,4 +904,4 @@ <h2>Settings</h2>
906
904
907
905
</script>
908
</body>
909
-</html>
+</html>
0 commit comments