Skip to content

Commit

Permalink
make Config.coordinatesOnSquares optional
Browse files Browse the repository at this point in the history
  • Loading branch information
ornicar committed May 6, 2024
1 parent 8948624 commit 10c6f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export interface Config {
lastMove?: cg.Key[]; // squares part of the last move ["c3", "c4"]
selected?: cg.Key; // square currently selected "a1"
coordinates?: boolean; // include coords attributes
coordinatesOnSquares: boolean; // include coords attributes on every square
coordinatesOnSquares?: boolean; // include coords attributes on every square
autoCastle?: boolean; // immediately complete the castle by moving the rook after king move
viewOnly?: boolean; // don't bind events: the user will never be able to move pieces around
disableContextMenu?: boolean; // because who needs a context menu on a chessboard
Expand Down

0 comments on commit 10c6f28

Please sign in to comment.