For when you don’t want to type a dozen times, add this to application_helper.rb:
def nbsp(n=1)
n.times.map {" "}
end
In a view:
<%= nbsp 5 %>
replaces
For when you don’t want to type a dozen times, add this to application_helper.rb:
def nbsp(n=1)
n.times.map {" "}
end
In a view:
<%= nbsp 5 %>
replaces
Post a Comment