##// END OF EJS Templates
gantt: use content_tag instead of html tag at gantt header outline...
Toshi MARUYAMA -
r10140:c25d1756233c
parent child
Show More
@@ -100,11 +100,16
100 <% end %>
100 <% end %>
101 <% end %>
101 <% end %>
102 </td>
102 </td>
103 <td>
104
103
104 <td>
105 <div style="position:relative;height:<%= t_height + 24 %>px;overflow:auto;">
105 <div style="position:relative;height:<%= t_height + 24 %>px;overflow:auto;">
106 <div style="width:<%= g_width - 1 %>px;height:<%= headers_height %>px;background: #eee;"
106 <%
107 class="gantt_hdr">&nbsp;</div>
107 style = ""
108 style += "width: #{g_width - 1}px;"
109 style += "height: #{headers_height}px;"
110 style += 'background: #eee;'
111 %>
112 <%= content_tag(:div, '&nbsp;'.html_safe, :style => style, :class => "gantt_hdr") %>
108
113
109 <% ###### Months headers ###### %>
114 <% ###### Months headers ###### %>
110 <%
115 <%
General Comments 0
You need to be logged in to leave comments. Login now