vitogit / vue-chessboard

Chessboard vue component to load positions, create positions and see threats
http://vitomd.com/vue-chessboard-examples/
GNU General Public License v3.0
165 stars 49 forks source link

How to show check background #36

Closed pouyaSamie closed 3 years ago

pouyaSamie commented 3 years ago

Hi and thanks for your efforts. I want to show the red background on check. it seems it does not add check square. I tried to recreate the board with a highlight option for check but that did not work either.

pouyaSamie commented 3 years ago

i found the solution

in aftermove function, i did something like this and that worked:

  if (this.game.in_check())
        this.board.set({
          check: true,
        });

by the way, I updated the chessground and it had some problems after the update I fixed that I can send pull request for these changes