[Rt-commit] r17185 - rt/3.8/trunk/share/html/Widgets
sunnavy at bestpractical.com
sunnavy at bestpractical.com
Fri Dec 12 06:39:15 EST 2008
Author: sunnavy
Date: Fri Dec 12 06:39:15 2008
New Revision: 17185
Modified:
rt/3.8/trunk/share/html/Widgets/TitleBoxStart
Log:
fix a bug that some titles of widgets can't be clickable in ie6: make </span> to follow </a> tightly(no newline). I hate ie6
Modified: rt/3.8/trunk/share/html/Widgets/TitleBoxStart
==============================================================================
--- rt/3.8/trunk/share/html/Widgets/TitleBoxStart (original)
+++ rt/3.8/trunk/share/html/Widgets/TitleBoxStart Fri Dec 12 06:39:15 2008
@@ -55,8 +55,7 @@
% }
<span class="left">
<% $title_href ? qq[<a href="$title_href">] : '' | n
- %><% $title %><% $title_raw |n %><% $title_href ? "</a>" : '' |n%>
- </span>
+ %><% $title %><% $title_raw |n %><% $title_href ? "</a>" : '' |n%></span>
<span class="right<%($titleright_href || $titleright || $titleright_raw) ? '' : '-empty' %>">
<% $titleright_href ? qq[<a href="$titleright_href">] : '' | n %>
<% $titleright %><% $titleright_raw |n%><% $titleright_href ? "</a>" : '' |n%>
More information about the Rt-commit
mailing list