@@ -25,7 +25,7 module GanttHelper | |||
|
25 | 25 | params.merge(gantt.params.merge(:zoom => (gantt.zoom+1))), |
|
26 | 26 | :class => 'icon icon-zoom-in' |
|
27 | 27 | else |
|
28 | content_tag('span', l(:text_zoom_in), :class => 'icon icon-zoom-in') | |
|
28 | content_tag('span', l(:text_zoom_in), :class => 'icon icon-zoom-in').html_safe | |
|
29 | 29 | end |
|
30 | 30 | |
|
31 | 31 | when :out |
@@ -34,7 +34,7 module GanttHelper | |||
|
34 | 34 | params.merge(gantt.params.merge(:zoom => (gantt.zoom-1))), |
|
35 | 35 | :class => 'icon icon-zoom-out' |
|
36 | 36 | else |
|
37 | content_tag('span', l(:text_zoom_out), :class => 'icon icon-zoom-out') | |
|
37 | content_tag('span', l(:text_zoom_out), :class => 'icon icon-zoom-out').html_safe | |
|
38 | 38 | end |
|
39 | 39 | end |
|
40 | 40 | end |
General Comments 0
You need to be logged in to leave comments.
Login now