lichess-org / chessground

Mobile/Web chess UI for lichess.org
https://lichess.org
GNU General Public License v3.0
1.01k stars 260 forks source link

callback on square click #266

Closed chao-mu closed 1 year ago

chao-mu commented 1 year ago

I would love if there were a view only chessboard but still get a callback on the select event so that I can manually handle the interactions with the board (custom puzzles/games).

chao-mu commented 1 year ago

I figured out how to do it with the following config:

{
          events: { select: onSelect },
          movable: { free: false },
          draggable: { enabled: false }
}
chao-mu commented 1 year ago

Thank you so much for this library!