From a95e9c0171d4cb591e2f74323937cd2429c03949 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Mon, 23 Dec 2024 18:51:41 +0000 Subject: [PATCH] oi --- lab/splash/index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/lab/splash/index.html b/lab/splash/index.html index 40c9a0ff..cfa652a8 100644 --- a/lab/splash/index.html +++ b/lab/splash/index.html @@ -3539,9 +3539,9 @@

Splash

- - - + + +

@@ -3834,7 +3834,7 @@

Splash

const value = numberInput.value; navigator.clipboard.writeText(value); copiesSplash++; - copyButtonSplash.textContent = `Copied splash to clipboard`; + copyButtonSplash.textContent = `Copied splash`; if (copiesSplash > 1) { copyButtonSplash.textContent += ` x${copiesSplash}`; @@ -3849,7 +3849,7 @@

Splash

: getHexFromSplash(value); navigator.clipboard.writeText(hex); copies++; - copyButton.textContent = `Copied hex to clipboard`; + copyButton.textContent = `Copied hex`; if (copies > 1) { copyButton.textContent += ` x${copies}`; @@ -3865,7 +3865,7 @@

Splash

const rgb = hexToRgb(hex); navigator.clipboard.writeText(rgb); copiesRgb++; - copyButtonRgb.textContent = `Copied RGB to clipboard`; + copyButtonRgb.textContent = `Copied RGB`; if (copiesRgb > 1) { copyButtonRgb.textContent += ` x${copiesRgb}`;