From 46776589eef397418d612dc3fbac44c10ebdac7c Mon Sep 17 00:00:00 2001 From: roryclear Date: Fri, 6 Dec 2024 11:38:52 +0000 Subject: [PATCH] add time to score --- index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.html b/index.html index 228ad17..698b629 100644 --- a/index.html +++ b/index.html @@ -574,7 +574,7 @@ function shareScore() { const scoreElement = document.getElementById('score') - text = "#walktourdle #" + (days+1) + "\n" + scoreElement.innerText + "\nhttps://www.walktourdle.com"; + text = "#walktourdle #" + (days+1) + "\n" + scoreElement.innerText + "\n" + document.getElementById('time-taken').innerText + "\nhttps://www.walktourdle.com"; navigator.clipboard.writeText(text); alert("copied to clipboard"); }