##// END OF EJS Templates
Rails3: view: use html_safe for Gantt...
Toshi MARUYAMA -
r7436:4d787ce22830
parent child
Show More
@@ -72,7 +72,7 t_height = g_height + headers_height
72 <div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;overflow:hidden;" class="gantt_hdr"></div>
72 <div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;overflow:hidden;" class="gantt_hdr"></div>
73
73
74 <div class="gantt_subjects">
74 <div class="gantt_subjects">
75 <%= @gantt.subjects %>
75 <%= @gantt.subjects.html_safe %>
76 </div>
76 </div>
77
77
78 </div>
78 </div>
@@ -152,7 +152,7 if show_days
152 end
152 end
153 end %>
153 end %>
154
154
155 <%= @gantt.lines %>
155 <%= @gantt.lines.html_safe %>
156
156
157 <%
157 <%
158 #
158 #
General Comments 0
You need to be logged in to leave comments. Login now