diff --git a/index.html b/index.html index 82c152e..6c16887 100644 --- a/index.html +++ b/index.html @@ -46,7 +46,7 @@
-
+
diff --git a/js/artsey-tutor.js b/js/artsey-tutor.js index ea36029..78da321 100644 --- a/js/artsey-tutor.js +++ b/js/artsey-tutor.js @@ -44,13 +44,15 @@ function artsey_reset() { const sleep = (delay) => new Promise((resolve) => setTimeout(resolve, delay)) +let current_letter = ''; + $(document).ready(async function () { console.log("ready!"); for (let key in mappings) { await sleep(1000); console.log(key); - $('#text-to-type').text(key.split('_')[1].toUpperCase()) + $('#text-to-type').text(key.split('_')[1].toLowerCase()) artsey_draw(mappings[key]); } - artsey_reset(); + //artsey_reset(); }); \ No newline at end of file