You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: index.html
+21-2Lines changed: 21 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -77,7 +77,7 @@
77
77
</ul>
78
78
79
79
<divclass="small_header">Guessing tools:</div>
80
-
<ul>
80
+
<!-- <ul>
81
81
<li>
82
82
Mark blank cells:
83
83
<select title="Mark all blank cells a unique color so they can be deleted easily. This is useful for making guesses." onchange="this.style.color = this.value.toLowerCase(); setBlankCells(this.value.toLowerCase());">
@@ -98,7 +98,26 @@
98
98
<option style="color: purple;">Purple</option>
99
99
</select>
100
100
</li>
101
-
</ul>
101
+
</ul> -->
102
+
<tableid="guessing_tools_table">
103
+
<tbody>
104
+
<tr>
105
+
<td>Mark blank cells:</td>
106
+
<td><ahref="javascript:void(0);" onclick="setBlankCells('black');" style="color: black; background-color: #FF8;" id="mark_blank_cells_black" title="Mark all blank cells black so they can be deleted easily. This is useful for making guesses.">Black</a></td>
107
+
<td><ahref="javascript:void(0);" onclick="setBlankCells('blue');" style="color: blue;" id="mark_blank_cells_blue" title="Mark all blank cells blue so they can be deleted easily. This is useful for making guesses.">Blue</a></td>
108
+
<td><ahref="javascript:void(0);" onclick="setBlankCells('red');" style="color: red;" id="mark_blank_cells_red" title="Mark all blank cells red so they can be deleted easily. This is useful for making guesses.">Red</a></td>
109
+
<td><ahref="javascript:void(0);" onclick="setBlankCells('green');" style="color: green;" id="mark_blank_cells_green" title="Mark all blank cells green so they can be deleted easily. This is useful for making guesses.">Green</a></td>
110
+
<td><ahref="javascript:void(0);" onclick="setBlankCells('purple');" style="color: purple;" id="mark_blank_cells_purple" title="Mark all blank cells purple so they can be deleted easily. This is useful for making guesses.">Purple</a></td>
111
+
</tr><tr>
112
+
<td>Delete cells marked:</td>
113
+
<td><ahref="javascript:void(0);" onclick="deleteColoredCells('black');" style="color: black;" title="Delete all cells marked black.">Black</a></td>
114
+
<td><ahref="javascript:void(0);" onclick="deleteColoredCells('blue');" style="color: blue;" title="Delete all cells marked blue.">Blue</a></td>
115
+
<td><ahref="javascript:void(0);" onclick="deleteColoredCells('red');" style="color: red;" title="Delete all cells marked red.">Red</a></td>
116
+
<td><ahref="javascript:void(0);" onclick="deleteColoredCells('green');" style="color: green;" title="Delete all cells marked green.">Green</a></td>
117
+
<td><ahref="javascript:void(0);" onclick="deleteColoredCells('purple');" style="color: purple;" title="Delete all cells marked purple.">Purple</a></td>
0 commit comments