Skip to content

Commit

Permalink
Merge pull request #256 from qwerty084/remove-auto-castle
Browse files Browse the repository at this point in the history
Remove auto castle
  • Loading branch information
qwerty084 authored Jul 18, 2024
2 parents 2eada7c + fa83b84 commit ea413e6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ import type { BoardApi, BoardConfig } from 'vue3-chessboard';
let boardAPI: BoardApi;
const boardConfig: BoardConfig = {
coordinates: false,
coordinates: true,
};
function handleCheckmate(isMated: string) {
Expand Down Expand Up @@ -117,7 +117,7 @@ import 'vue3-chessboard/style.css';
let boardAPI;
const boardConfig = {
coordinates: false,
coordinates: true,
};
function handleCheckmate(isMated) {
Expand Down
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ let boardAPI: BoardApi | undefined;
const boardConfig: BoardConfig = {
coordinates: true,
autoCastle: false,
};
const playerColor: 'white' | 'black' | 'both' | undefined = undefined;
</script>

Expand Down

0 comments on commit ea413e6

Please sign in to comment.