##// END OF EJS Templates
code cleanup gantt_helper.rb...
Toshi MARUYAMA -
r10792:dd26ac3038a4
parent child
Show More
@@ -27,7 +27,7 module GanttHelper
27 27 params.merge(gantt.params.merge(:zoom => (gantt.zoom+1))),
28 28 :class => 'icon icon-zoom-in'
29 29 else
30 content_tag('span', l(:text_zoom_in), :class => 'icon icon-zoom-in').html_safe
30 content_tag(:span, l(:text_zoom_in), :class => 'icon icon-zoom-in').html_safe
31 31 end
32 32
33 33 when :out
@@ -36,7 +36,7 module GanttHelper
36 36 params.merge(gantt.params.merge(:zoom => (gantt.zoom-1))),
37 37 :class => 'icon icon-zoom-out'
38 38 else
39 content_tag('span', l(:text_zoom_out), :class => 'icon icon-zoom-out').html_safe
39 content_tag(:span, l(:text_zoom_out), :class => 'icon icon-zoom-out').html_safe
40 40 end
41 41 end
42 42 end
General Comments 0
You need to be logged in to leave comments. Login now