diff options
-rw-r--r-- | README.md | 7 | ||||
-rw-r--r-- | index.html | 9 | ||||
-rw-r--r-- | script.js | 10 |
3 files changed, 26 insertions, 0 deletions
diff --git a/README.md b/README.md index 89b15c6..4d8f898 100644 --- a/README.md +++ b/README.md @@ -1 +1,8 @@ +### what? +wednesdayle. wordle, but the word is only wednesday. + +### w- but *why?* +why not? it appeared in my head and it seemed easy to make, if only badly. so i did. and badly it is. + +### font. Barlow font: <https://github.com/jpt/barlow> \ No newline at end of file diff --git a/index.html b/index.html index c05b97d..1b91228 100644 --- a/index.html +++ b/index.html @@ -39,6 +39,15 @@ <button id="reset">again?</button> </section> </section> + <!-- + Monday | 6, 3 3 + Tuesday | 7, 4 3 + Wednesday| 9, 3 3 3 + Thursday | 8, 4 4 + Friday | 6, 3 3 + Saturday | 8, 4 4 + Sunday | 6, 3 3 + --> <section id="keyboard"> <div id="row0"> <button id="key0">W</button> diff --git a/script.js b/script.js index 54a5151..d86ca18 100644 --- a/script.js +++ b/script.js @@ -32,6 +32,16 @@ class Wednesdayle { this.notword = document.getElementById('notword'); } + dialogClosed() { + if (localStorage.getItem("dialogState") == "closed") { + + } + } + + saveDialogClosed() { + + } + // Terrible function name genny letterDid(letter) { if (!this.active) { |