From 7bea925ab1f4de8036939bb6a5a8016492fba872 Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 22 Nov 2014 02:53:01 +0100 Subject: [PATCH] In , there is nothing to align, so remove the funny-looking space. --- 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 ac3f8e9..a37fede 100644 --- a/www/js/remoteglot.js +++ b/www/js/remoteglot.js @@ -652,7 +652,7 @@ var update_board = function(current_data, display_data) { // The <title> contains a very brief headline. var title_elems = []; if (data['short_score'] !== undefined && data['short_score'] !== null) { - title_elems.push(data['short_score']); + title_elems.push(data['short_score'].replace(/^ /, "")); } if (last_move !== null) { title_elems.push(last_move); -- 2.39.2