From: Steinar H. Gunderson Date: Sun, 8 Jun 2014 13:05:33 +0000 (+0200) Subject: Fix a bug where “next move” would not work. X-Git-Url: https://git.sesse.net/?p=remoteglot;a=commitdiff_plain;h=071760a7bd1a175ebe9c77b460b8d0f654eeee48 Fix a bug where “next move” would not work. --- diff --git a/www/js/remoteglot.js b/www/js/remoteglot.js index d4dad05..8cffebd 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -649,7 +649,7 @@ var next_move = function() { ++current_display_move; update_displayed_line(); } -window['next_move'] = prev_move; +window['next_move'] = next_move; var update_displayed_line = function() { if (current_display_line === null) {