Skip to content

Instantly share code, notes, and snippets.

@trosage
Created December 14, 2011 17:11
Show Gist options
  • Save trosage/1477492 to your computer and use it in GitHub Desktop.
Save trosage/1477492 to your computer and use it in GitHub Desktop.
Original
<%= link_to("Download", @video.assets_url, :class => "button button-small button-generic") unless @video.assets.blank? %>
What I want to work
<% if @video.assets.blank? %>
<li>
<%= link_to("Download", @video.assets_url, :class => "button button-small button-generic") %>
<h4><%= link_to("Project Assets", @video.assets_url) %></h4>
<span class="note">Zip File</span>
</li>
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment