Fix Chapter UI

This commit is contained in:
Mike Nolan 2023-09-03 14:16:03 -05:00
parent 242d91c39d
commit ffbad1005e
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@
const myUrl = new URL(window.location.href); const myUrl = new URL(window.location.href);
myUrl.hash = `#verse-${i}`; myUrl.hash = `#verse-${i}`;
card_footer_link.href = myUrl.toString(); card_footer_link.href = myUrl.toString();
card_footer_link.click = (e)=>{ card_footer_link.onclick = (e)=>{
e.preventDefault(); e.preventDefault();
navigator.clipboard.writeText(myUrl.toString()); navigator.clipboard.writeText(myUrl.toString());
}; };