From 9ee4f78e4b1b1a11bc6b3b8f4f5506517abbd22a Mon Sep 17 00:00:00 2001 From: Chip Wasson Date: Fri, 29 Aug 2025 10:11:57 -0600 Subject: [PATCH] Add confirmation alert --- views/junk-drawer/view.hbs | 1 + 1 file changed, 1 insertion(+) diff --git a/views/junk-drawer/view.hbs b/views/junk-drawer/view.hbs index a639192..bf3bd51 100644 --- a/views/junk-drawer/view.hbs +++ b/views/junk-drawer/view.hbs @@ -12,6 +12,7 @@ navigator.clipboard.writeText(markdownContent); markdownContent.select(); document.execCommand("Copy"); + alert("Copied to clipboard!"); } function startup() { const el = document.getElementById("markdown");