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