1--- pgn4web/pgn4web.js	2016-04-01 09:26:08.000000000 +0200
2+++ /tmp/pgn4web.js	2016-07-18 17:55:12.511349916 +0200
3@@ -3346,7 +3346,7 @@
4     text += '"; CLASS="buttonControl" TITLE="go to game start" ID="btnGoToStart" onClick="clickedBbtn(this,event);" ONFOCUS="this.blur();"></TD><TD CLASS="buttonControlSpace" WIDTH="' + spaceSize + '"></TD><TD><INPUT ID="backButton" TYPE="BUTTON" VALUE="&lt;" STYLE="';
5     if (buttonSize > 0) { text += 'width: ' + buttonSize + 'px;'; }
6     text += '"; CLASS="buttonControl" TITLE="move backward" ID="btnMoveBackward1" onClick="clickedBbtn(this,event);" ONFOCUS="this.blur();"></TD><TD CLASS="buttonControlSpace" WIDTH="' + spaceSize + '"></TD><TD>';
7-    text += '<INPUT ID="autoplayButton" TYPE="BUTTON" VALUE=' + (isAutoPlayOn ? "=" : "+") + ' STYLE="';
8+    text += '<INPUT ID="autoplayButton" TYPE="BUTTON" VALUE=' + (isAutoPlayOn ? "=" : "\u2192") + ' STYLE="';
9     if (buttonSize > 0) { text += 'width: ' + buttonSize + 'px;'; }
10     text += isAutoPlayOn ? '"; CLASS="buttonControlStop" TITLE="toggle autoplay (stop)" ' : '"; CLASS="buttonControlPlay" TITLE="toggle autoplay (start)" ';
11     text += ' ID="btnPlay" NAME="AutoPlay" onClick="clickedBbtn(this,event);" ONFOCUS="this.blur();"></TD><TD CLASS="buttonControlSpace" WIDTH="' + spaceSize + '"></TD><TD><INPUT ID="forwardButton" TYPE="BUTTON" VALUE="&gt;" STYLE="';
12@@ -3688,7 +3688,7 @@
13   if (isAutoPlayOn) {
14     if (document.GameButtonsForm) {
15       if (document.GameButtonsForm.AutoPlay) {
16-        document.GameButtonsForm.AutoPlay.value = "=";
17+        document.GameButtonsForm.AutoPlay.value = "||";
18         document.GameButtonsForm.AutoPlay.title = "toggle autoplay (stop)";
19         document.GameButtonsForm.AutoPlay.className = "buttonControlStop";
20       }
21@@ -3701,7 +3701,7 @@
22   } else {
23     if (document.GameButtonsForm) {
24       if (document.GameButtonsForm.AutoPlay) {
25-        document.GameButtonsForm.AutoPlay.value = "+";
26+        document.GameButtonsForm.AutoPlay.value = "\u2192";
27         document.GameButtonsForm.AutoPlay.title = "toggle autoplay (start)";
28         document.GameButtonsForm.AutoPlay.className = "buttonControlPlay";
29       }
30