diff options
| author | Simon Tatham <anakin@pobox.com> | 2017-09-07 18:44:58 +0100 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2017-09-07 18:44:58 +0100 |
| commit | a0a581c8b5422bf0c5ed3fde6aa25811e4eb89fc (patch) | |
| tree | a2ed13040b9af8ffc37e17445b50b1aac583273d | |
| parent | ef39e6e1739435f8c079bc2d94765e735da0b52a (diff) | |
| download | puzzles-a0a581c8b5422bf0c5ed3fde6aa25811e4eb89fc.zip puzzles-a0a581c8b5422bf0c5ed3fde6aa25811e4eb89fc.tar.gz puzzles-a0a581c8b5422bf0c5ed3fde6aa25811e4eb89fc.tar.bz2 puzzles-a0a581c8b5422bf0c5ed3fde6aa25811e4eb89fc.tar.xz | |
Fix borders on the HTML menu bar.
Commit ef39e6e17 made a goof in which the 'New game' button had no
border on the left and an accidental extra one on the right, which I'm
really not sure how I failed to spot when I tested it yesterday.
| -rwxr-xr-x | html/jspage.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/html/jspage.pl b/html/jspage.pl index ed971ae..37eea30 100755 --- a/html/jspage.pl +++ b/html/jspage.pl @@ -213,8 +213,8 @@ ${unfinishedpara} ></ul></li ><li>Type...<ul id="gametype"></ul></li ><li class="separator"></li -><li id="new">New game</li -><li id="restart" class="afterseparator">Restart game</li +><li id="new" class="afterseparator">New game</li +><li id="restart">Restart game</li ><li id="undo">Undo move</li ><li id="redo">Redo move</li ><li id="solve">Solve game</li |