From bf7f6e1e6c95f319285bbcbc385acde774e6daaa Mon Sep 17 00:00:00 2001 From: Matthew Grove Date: Mon, 19 Nov 2018 08:30:36 +0000 Subject: [PATCH] Add page title for dynamic insertion --- luhn-algorithm/script.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/luhn-algorithm/script.js b/luhn-algorithm/script.js index 7745fec..d7eb5c7 100644 --- a/luhn-algorithm/script.js +++ b/luhn-algorithm/script.js @@ -1,3 +1,6 @@ +// set page title +window.page_title = "Luhn Algorithm | Matthew Grove"; + document.addEventListener("keyup", function(event) { // stop any code that may normally run when enter key pressed event.preventDefault();