Skip to content

Commit

Permalink
expand moves UI; cleanup/refactor; WiP
Browse files Browse the repository at this point in the history
  • Loading branch information
shlomif committed Dec 23, 2023
1 parent 9e9f5e9 commit b951ca3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions fc-solve/site/wml/src/js-fc-solve/expand-moves/index.html.tt2
Original file line number Diff line number Diff line change
Expand Up @@ -88,18 +88,18 @@ require(['./solver-freecell'], function (solver) {
</div>

[% BLOCK output_opt %]
<input name="unicode_suits" id="unicode_suits__[% id_base %]" type="radio" title="[% title %]" class="phoenix" value="[% value %]" [%IF sel %] checked="checked"[%END%]/><label for="unicode_suits__[% id_base %]">[% title %]</label><br />
<input name="unicode_suits" id="unicode_suits__[% id_base %]" type="radio" title="[% title %]" class="phoenix" value="[% value %]" [% IF sel %] checked="checked"[% END %]/><label for="unicode_suits__[% id_base %]">[% title %]</label><br />
[% END %]

[% BLOCK output_controls %]
<div class="out_controls">

<div class="out_controls">
<input id="one_based" type="checkbox" title="1-based offset" class="phoenix" checked="checked" /><label for="one_based">1-based</label><br />
<fieldset>
<legend>Cards display</legend>
[% INCLUDE output_opt id_base="ascii", value="0", title="ASCII", sel="true" %]
[% INCLUDE output_opt id_base="unisuits", value="1", title="Unicode Suits" %]
[% INCLUDE output_opt id_base="unicards", value="2", title="Unicode Cards" %]
[% INCLUDE output_opt id_base="ascii", value="0", title="ASCII", sel="true" %]
[% INCLUDE output_opt id_base="unisuits", value="1", title="Unicode Suits" %]
[% INCLUDE output_opt id_base="unicards", value="2", title="Unicode Cards" %]
</fieldset>
<br />
<button id="clear_output" title="Clear the Output Box">Clear Output</button>
Expand Down

0 comments on commit b951ca3

Please sign in to comment.