Files
danbooru/app/views/uploads/_image.html.erb
2015-02-22 11:41:40 -08:00

16 lines
370 B
Plaintext

<% if params[:url] %>
<%= image_tag(@normalized_url, :title => "Preview", :id => "image") %>
<ul>
<% if @remote_size %>
<li><strong>Size:</strong> <%= number_to_human_size(@remote_size) %></li>
<% end %>
<% if params[:ref] %>
<li><strong>Referrer:</strong> <%= params[:ref] %></li>
<% end %>
<li id="scale"></li>
</ul>
<% end %>