From e7dc2e5b82c4c050fcacc2646e1f79194e0b14d5 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Fri, 22 Nov 2013 02:00:16 +0100 Subject: [PATCH] Fix a missing var declaration. --- 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 f4d37c4..128568a 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -324,7 +324,7 @@ var update_refutation_lines = function(board) { var tbl = $("#refutationlines"); tbl.empty(); - moves = []; + var moves = []; for (var move in refutation_lines) { moves.push(move); } -- 2.39.2