Module: TopicsHelper

Defined in:
app/helpers/topics_helper.rb

Instance Method Summary collapse

Instance Method Details

#leg_tab_row(text, image) ⇒ Object



3
4
5
6
7
8
9
10
# File 'app/helpers/topics_helper.rb', line 3

def leg_tab_row(text, image)
  html = "<tr>"
  html << "<td class='legtabsymbol'>"
  html << "<img src='" + image_path(image) + "'></td>"
  html << "<td class='legtabtext'><div class='t3'>#{text}</div></td>"
  html << "</tr>"
  html.html_safe
end