From ffbad1005e39391f60b58639a6f0fa899cc34c60 Mon Sep 17 00:00:00 2001 From: Michael Nolan Date: Sun, 3 Sep 2023 14:16:03 -0500 Subject: [PATCH] Fix Chapter UI --- BibleServerCli/data/www/chapter/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BibleServerCli/data/www/chapter/index.html b/BibleServerCli/data/www/chapter/index.html index d84e0ac..4489767 100644 --- a/BibleServerCli/data/www/chapter/index.html +++ b/BibleServerCli/data/www/chapter/index.html @@ -161,7 +161,7 @@ const myUrl = new URL(window.location.href); myUrl.hash = `#verse-${i}`; card_footer_link.href = myUrl.toString(); - card_footer_link.click = (e)=>{ + card_footer_link.onclick = (e)=>{ e.preventDefault(); navigator.clipboard.writeText(myUrl.toString()); };