summaryrefslogtreecommitdiff
path: root/index.html
diff options
context:
space:
mode:
authorJulien Dessaux2022-10-13 23:22:58 +0200
committerJulien Dessaux2022-10-13 23:24:54 +0200
commite8d5d396658d074812d5dfd096720c60cd5a9e87 (patch)
treed5aad7b8af81ac80d07759c4585bcf1d60f480b9 /index.html
parentFixed error following refactoring (diff)
downloadjeux-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.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/index.html b/index.html
index 6ea4c01..b84f998 100644
--- a/index.html
+++ b/index.html
@@ -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>