]> git.sesse.net Git - remoteglot/commitdiff
Simplify print_pv().
authorSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 29 Dec 2022 09:03:32 +0000 (10:03 +0100)
committerSteinar H. Gunderson <sgunderson@bigfoot.com>
Thu, 29 Dec 2022 09:03:32 +0000 (10:03 +0100)
www/js/remoteglot.js

index 5d19116ee1927ebc82a989e0aab19a0dc646cf5b..3667f5975ae440155d7e6071519af8b498e5fcd9 100644 (file)
@@ -754,18 +754,6 @@ function print_pv(line_num, splicepos, opt_limit, opt_showlast) {
                move_num += i / 2;
        } else if (toplay == 'B' && pv.length > 0) {
                ret.appendChild(document.createTextNode(move_num + '. … '));
-               let move = "";
-               if (splicepos === 0) {
-                       ret.appendChild(document.createTextNode('(TB: '));
-                       in_tb = true;
-               }
-               link.setAttribute('id', 'automove' + line_num + '-0');
-               link.href = 'javascript:show_line(' + line_num + ', ' + 0 + ');';
-               link.textContent = pv[0];
-               ret.appendChild(link);
-               toplay = 'W';
-               ++i;
-               ++move_num;
        }
        for ( ; i < pv.length; ++i) {
                link = document.createElement('a');
@@ -778,7 +766,10 @@ function print_pv(line_num, splicepos, opt_limit, opt_showlast) {
                        in_tb = true;
                }
 
-               if (toplay == 'W') {
+               if (toplay == 'B' && i == 0) {
+                       ++move_num;
+                       toplay = 'W';
+               } else if (toplay == 'W') {
                        if (i > opt_limit && !opt_showlast) {
                                if (in_tb) {
                                        ret.appendChild(document.createTextNode(')'));