aboutsummaryrefslogtreecommitdiff
path: root/customize.rb
diff options
context:
space:
mode:
authorBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-11-20 17:19:14 +0100
committerBenjamin Kellermann <Benjamin.Kellermann@gmx.de>2009-11-20 17:19:14 +0100
commit92dd6c0911be3356d01eeba1e0a93c3b760a8f7f (patch)
treea8df80d05bceafedbfb214a145eff2007f43d18c /customize.rb
parentd5c5f1816037817117ed759d1954bf17780122cb (diff)
small hci corrections
Diffstat (limited to 'customize.rb')
-rwxr-xr-xcustomize.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/customize.rb b/customize.rb
index a976452..8a9231a 100755
--- a/customize.rb
+++ b/customize.rb
@@ -46,12 +46,12 @@ $html << <<CHARSET
<th>Description</th>
</tr>
CHARSET
-[["Use special characters (#{UTFCHARS})","utf"],
- ["Use normal strings","ascii"]].each{|description,href|
+[["Use normal strings","ascii"],
+ ["Use special characters (#{UTFCHARS})","utf"]].each{|description,href|
selected = href == (USEUTF ? "utf" : "ascii")
$html << "<tr><td>"
- $html << "X" if selected
- $html << "</td><td>"
+ $html << CROSS if selected
+ $html << "</td><td class='charset'>"
$html << "<a href='?#{href}'>" unless selected
$html << description
$html << "</a>" unless selected