6 lines
135 B
Ruby
6 lines
135 B
Ruby
class ImportantInput < Formtastic::Inputs::StringInput
|
|
def to_html
|
|
(" IMPORTANT " + super + " IMPORTANT ").html_safe
|
|
end
|
|
end
|