Created
August 3, 2012 02:18
-
-
Save greendezine/3243585 to your computer and use it in GitHub Desktop.
if/elseif
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<span <% if formatted_price_for(@daily_deal.price_to_display).length == 6 %> | |
style="font-size: 75%"> | |
<% elsif formatted_price_for(@daily_deal.price_to_display).length == 7 %> | |
style="font-size: 65%"> | |
<% elsif formatted_price_for(@daily_deal.price_to_display).length > 7 %> | |
style="font-size: 55%"> | |
<% else %> | |
style="font-size: 100%"> | |
<% end %> | |
<%= formatted_price_for(@daily_deal.price_to_display) %> | |
</span> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment