diff options
author | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-09-08 00:59:08 +0000 |
---|---|---|
committer | Toshi MARUYAMA <marutosijp2@yahoo.co.jp> | 2012-09-08 00:59:08 +0000 |
commit | 2edb8d597a3757301c95861767d2cdadffd264d0 (patch) | |
tree | f9b2828487732f3568da75b60855effbe91170ed | |
parent | 23eae0bf3c3da3c9bc513c22d7b0a27b2e7c55d8 (diff) | |
download | redmine-2edb8d597a3757301c95861767d2cdadffd264d0.tar.gz redmine-2edb8d597a3757301c95861767d2cdadffd264d0.zip |
gantt: use content_tag instead of html tag at gantt subject
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10320 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/gantts/show.html.erb | 39 |
1 files changed, 28 insertions, 11 deletions
diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 9355c9bd6..4fe9f4095 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -71,17 +71,34 @@ t_height = g_height + headers_height <table style="width:100%; border:0; border-collapse: collapse;"> <tr> <td style="width:<%= subject_width %>px; padding:0px;"> - -<div style="position:relative;height:<%= t_height + 24 %>px;width:<%= subject_width + 1 %>px;"> -<div style="right:-2px;width:<%= subject_width %>px;height:<%= headers_height %>px;background: #eee;" class="gantt_hdr"></div> -<div style="right:-2px;width:<%= subject_width %>px;height:<%= t_height %>px;border-left: 1px solid #c0c0c0;overflow:hidden;" - class="gantt_hdr"></div> - -<div class="gantt_subjects"> -<%= @gantt.subjects.html_safe %> -</div> - -</div> + <% + style = "" + style += "position:relative;" + style += "height: #{t_height + 24}px;" + style += "width: #{subject_width + 1}px;" + %> + <%= content_tag(:div, :style => style) do %> + <% + style = "" + style += "right:-2px;" + style += "width: #{subject_width}px;" + style += "height: #{headers_height}px;" + style += 'background: #eee;' + %> + <%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %> + <% + style = "" + style += "right:-2px;" + style += "width: #{subject_width}px;" + style += "height: #{t_height}px;" + style += 'border-left: 1px solid #c0c0c0;' + style += 'overflow: hidden;' + %> + <%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %> + <%= content_tag(:div, :class => "gantt_subjects") do %> + <%= @gantt.subjects.html_safe %> + <% end %> + <% end %> </td> <td> |