restored nowrap to tables, until we can control this better

This commit is contained in:
steve donovan 2011-07-14 15:26:03 +02:00
parent 1735332b96
commit 742370d3ff
1 changed files with 3 additions and 3 deletions

View File

@ -95,9 +95,9 @@
# for kind,items in module.kinds() do
<h2><a href="#$(no_spaces(kind))">$(kind)</a></h2>
<table class="function_list">
# for item in items() do -- nowrap
# for item in items() do
<tr>
<td class="name"><a href="#$(item.name)">$(display_name(item))</a></td>
<td class="name" nowrap><a href="#$(item.name)">$(display_name(item))</a></td>
<td class="summary">$(M(item.summary))</td>
</tr>
# end -- for items
@ -181,7 +181,7 @@
<table class="module_list">
# for m in mods() do
<tr>
<td class="name"><a href="$(no_spaces(kind))/$(m.name).html">$(m.name)</a></td>
<td class="name" nowrap><a href="$(no_spaces(kind))/$(m.name).html">$(m.name)</a></td>
<td class="summary">$(M(m.summary))</td>
</tr>
# end -- for modules