Allow entering words after completing crossword.
This commit is contained in:
parent
cfce600885
commit
63dfbf48ac
|
@ -16,7 +16,6 @@
|
|||
<script >
|
||||
class CrosswordUI extends AnagramEntryUI {
|
||||
submitWord(word) {
|
||||
if (this.won) return;
|
||||
let guess;
|
||||
if (word) {
|
||||
guess = word;
|
||||
|
@ -69,8 +68,6 @@
|
|||
|
||||
if (this.game.won) {
|
||||
this.won = true;
|
||||
document.getElementById('letters_entry').style.display = 'none';
|
||||
document.getElementById('submit_buttons').style.display = 'none';
|
||||
document.getElementById('endgame').style.display = '';
|
||||
}
|
||||
}
|
||||
|
@ -364,7 +361,9 @@
|
|||
as either a <span class="top_word">common word</span> (in the
|
||||
50,000 most common English words according to the word list) or
|
||||
a <span class="bonus">bonus word</span> (any other correctly
|
||||
spelled English word).
|
||||
spelled English word). After winning, you can continue trying
|
||||
to guess more common/bonus words or click the "Next Game" button
|
||||
to move onto the next crossword.
|
||||
</p>
|
||||
|
||||
<h2>Interface</h2>
|
||||
|
|
Loading…
Reference in New Issue
Block a user