gantt: use content_tag instead of html tag at the tooltip
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10362 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
f8cedf00a8
commit
097d9661c9
|
@ -769,10 +769,18 @@ module Redmine
|
||||||
end
|
end
|
||||||
# Renders the tooltip
|
# Renders the tooltip
|
||||||
if options[:issue] && coords[:bar_start] && coords[:bar_end]
|
if options[:issue] && coords[:bar_start] && coords[:bar_end]
|
||||||
output << "<div class='tooltip' style='position: absolute;top:#{ params[:top] }px;left:#{ coords[:bar_start] }px;width:#{ coords[:bar_end] - coords[:bar_start] }px;height:12px;'>".html_safe
|
s = view.content_tag(:span,
|
||||||
output << '<span class="tip">'.html_safe
|
view.render_issue_tooltip(options[:issue]).html_safe,
|
||||||
output << view.render_issue_tooltip(options[:issue]).html_safe
|
:class => "tip")
|
||||||
output << "</span></div>".html_safe
|
style = ""
|
||||||
|
style << "position: absolute;"
|
||||||
|
style << "top:#{params[:top]}px;"
|
||||||
|
style << "left:#{coords[:bar_start]}px;"
|
||||||
|
style << "width:#{coords[:bar_end] - coords[:bar_start]}px;"
|
||||||
|
style << "height:12px;"
|
||||||
|
output << view.content_tag(:div, s.html_safe,
|
||||||
|
:style => style,
|
||||||
|
:class => "tooltip")
|
||||||
end
|
end
|
||||||
@lines << output
|
@lines << output
|
||||||
output
|
output
|
||||||
|
|
Loading…
Reference in New Issue