cm-chessboard 4.3.4 → 4.3.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -395,7 +395,7 @@ const chessboard = new Chessboard(document.getElementById("board"), {
|
|
|
395
395
|
[{
|
|
396
396
|
class: Accessibility,
|
|
397
397
|
props: {
|
|
398
|
-
brailleNotationInAlt: true, // show the braille notation of the
|
|
398
|
+
brailleNotationInAlt: true, // show the braille notation of the position in the alt attribute of the SVG image
|
|
399
399
|
boardAsTable: true, // display the board additionally as HTML table
|
|
400
400
|
movePieceForm: true, // display a form to move a piece (from, to, move)
|
|
401
401
|
piecesAsList: true, // display the pieces additionally as List
|
package/package.json
CHANGED
|
@@ -37,7 +37,7 @@ export class Accessibility extends Extension {
|
|
|
37
37
|
constructor(chessboard, props) {
|
|
38
38
|
super(chessboard, props)
|
|
39
39
|
this.props = {
|
|
40
|
-
brailleNotationInAlt: true, // show the braille notation of the
|
|
40
|
+
brailleNotationInAlt: true, // show the braille notation of the position in the alt attribute of the SVG image
|
|
41
41
|
boardAsTable: false, // display the board additionally as HTML table
|
|
42
42
|
movePieceForm: false, // display a form to move a piece (from, to, move)
|
|
43
43
|
piecesAsList: false, // display the pieces additionally as List
|