I'm brand new to Ruby and Rails.
I've been asked to help modify a RoR site with a lot of legacy code, where the original developer is gone. When I look at the erb HTML templates, I see code like this in several places:
<% if( @fullscreen == 1 ) %>
<%= "<div class='full'><p>...</p></div>" %>
<% end %>
Is there a reason for the <%= and %> on the second line? It seems like it just prints the exact quoted string, so there would be no difference from putting the <div> code by itself on that line without the bracket-percent bookends. Everything seems fine when I take it out, but I don't want to miss anything subtle.
Thanks.