From 071760a7bd1a175ebe9c77b460b8d0f654eeee48 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sun, 8 Jun 2014 15:05:33 +0200 Subject: [PATCH] =?utf8?q?Fix=20a=20bug=20where=20=E2=80=9Cnext=20move?= =?utf8?q?=E2=80=9D=20would=20not=20work.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- www/js/remoteglot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.39.2