From 62583b4c3e34aae62cfe74fa2ca5ca5512e81c4b Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 14 Dec 2014 12:16:02 +0100 Subject: [PATCH] Highlight the last move. --- www/js/book.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/www/js/book.js b/www/js/book.js index efb68e3..78dfed8 100644 --- a/www/js/book.js +++ b/www/js/book.js @@ -43,6 +43,17 @@ var update = function() { var game = get_game(); board.position(game.fen()); + + var all_moves = game.history({ verbose: true }); + if (all_moves.length > 0) { + var last_move = all_moves.pop(); + var highlight_from = last_move.from; + var highlight_to = last_move.to; + $("#board").find('.square-55d63').removeClass('nonuglyhighlight'); + $("#board").find('.square-' + highlight_from).addClass('nonuglyhighlight'); + $("#board").find('.square-' + highlight_to).addClass('nonuglyhighlight'); + } + fetch_analysis(); } -- 2.39.2