From eb9c6db88092f76d8717cac79fb7f3f9e0af95f4 Mon Sep 17 00:00:00 2001 From: The Ghost of FOSS' Future <163201376+sneedgroup-holder@users.noreply.github.com> Date: Wed, 18 Sep 2024 08:43:45 -0500 Subject: [PATCH] Update index.html --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index e860829..a9d6542 100644 --- a/index.html +++ b/index.html @@ -341,7 +341,7 @@ }; window.deleteFile = (fileName) => { - if (confirm(`Are you sure you want to delete ${fileName}?`)) { + if (confirm(`Are you sure you want to delete ${fileName} from the list of files you are working on? (This WILL remove any changes!)`)) { delete files[fileName]; if (currentFile === fileName) { currentFile = Object.keys(files)[0] || "";