Skip to content

Commit

Permalink
Update crossword.js
Browse files Browse the repository at this point in the history
add class name
  • Loading branch information
superdiazzz authored Apr 8, 2024
1 parent 2e63d85 commit 4abbff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crossword.js
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ var CrosswordUtils = {
var css_class = "no-border";
} else {
var char = cell['char'];
var css_class = "";
var css_class = "bordered";
var is_start_of_word = (cell['across'] && cell['across']['is_start_of_word']) || (cell['down'] && cell['down']['is_start_of_word']);
}

Expand Down

0 comments on commit 4abbff2

Please sign in to comment.