diff options
author | Julien Dessaux | 2022-10-13 23:22:58 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-10-13 23:24:54 +0200 |
commit | e8d5d396658d074812d5dfd096720c60cd5a9e87 (patch) | |
tree | d5aad7b8af81ac80d07759c4585bcf1d60f480b9 /index.html | |
parent | Fixed error following refactoring (diff) | |
download | jeux-de-mots-e8d5d396658d074812d5dfd096720c60cd5a9e87.tar.gz jeux-de-mots-e8d5d396658d074812d5dfd096720c60cd5a9e87.tar.bz2 jeux-de-mots-e8d5d396658d074812d5dfd096720c60cd5a9e87.zip |
Added joker handling
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -45,7 +45,7 @@ <script> var CWDATA = { board: [ - [ "T", "E", "S", "T", "","", "", "", "", "","", "", "", "", "" ], + [ "T", "E", {joker:"S"}, "T", "","", "", "", "", "","", "", "", "", "" ], [ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ], [ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ], [ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ], @@ -61,7 +61,7 @@ [ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ], [ "", "", "", "", "","", "", "", "", "","", "", "", "", "" ] ], - letters: [ "A", "B", "C", "D", "E", "F", "G" ] + letters: [ "A", "B", "C", "D", "E", "F", "JOKER" ] }; </script> <script type="module" src="index.js"></script> |