From 5e43f076c3355b4f17e132e92af66cb240e194b0 Mon Sep 17 00:00:00 2001 From: elijah Date: Mon, 4 Nov 2024 01:51:56 +0100 Subject: [PATCH] Change typing delay --- assets/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/index.js b/assets/index.js index 170e25f..03a987e 100644 --- a/assets/index.js +++ b/assets/index.js @@ -14,7 +14,7 @@ function writeoutnavlabel() { if (i < text.length) { label.textContent += text.charAt(i); i++; - setTimeout(type, 100); + setTimeout(type, 180); } } // why am i using a function inside a function?