diff options
author | Julien Dessaux | 2022-10-12 17:59:57 +0200 |
---|---|---|
committer | Julien Dessaux | 2022-10-12 17:59:57 +0200 |
commit | 5bd98c99b7cf93303cda21029ee7dc6b15184003 (patch) | |
tree | bbcf661f325e22b3ec103406854a417077a1d9ef | |
parent | Simplified the way letters are handled (diff) | |
download | jeux-de-mots-5bd98c99b7cf93303cda21029ee7dc6b15184003.tar.gz jeux-de-mots-5bd98c99b7cf93303cda21029ee7dc6b15184003.tar.bz2 jeux-de-mots-5bd98c99b7cf93303cda21029ee7dc6b15184003.zip |
Prevent cursor removal
-rw-r--r-- | index.js | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,8 +35,8 @@ let CW = function(){ cursor.direction = "down"; me.innerHTML = "▼"; } else { - cursor = undefined; - me.innerHTML = ""; + cursor.direction = "right"; + me.innerHTML = "▶"; } } }; |