Module ApplicationHelper
In: app/helpers/application_helper.rb

Methods added to this helper will be available to all templates in the application.

Methods

Public Instance methods

[Source]

   # File app/helpers/application_helper.rb, line 4
4:   def round_box(content)
5:     "<div style=\"position:absolute; top:0px; left:0px;\" class=\"rbroundbox\"><div class=\"rbtop\"><div></div></div>\n<div class=\"rbcontent\">\n#{content}</div><div class=\"rbbot\"><div></div></div></div>"
6:   end

[Source]

    # File app/helpers/application_helper.rb, line 12
12:   def round_box_close
13:     "</div><div class=\"rbbot\"><div></div></div></div>"
14:   end

[Source]

    # File app/helpers/application_helper.rb, line 8
 8:   def round_box_open width100=true
 9:     "<div style=\"#{width100 ? 'width:100%;':''}\" class=\"rbroundbox\"><div class=\"rbtop\"><div></div></div>\n<div class=\"rbcontent\">\n"
10:   end

[Validate]