From dec130a80c4947f749782347d03469bd7358c43b Mon Sep 17 00:00:00 2001 From: George Claghorn Date: Sun, 7 Oct 2018 23:51:21 -0400 Subject: Use the ASt representation API --- app/views/active_storage/blobs/_blob.html.erb | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/views/active_storage/blobs/_blob.html.erb b/app/views/active_storage/blobs/_blob.html.erb index 6e4105d5cf..049f57e804 100644 --- a/app/views/active_storage/blobs/_blob.html.erb +++ b/app/views/active_storage/blobs/_blob.html.erb @@ -1,9 +1,6 @@ -<% transformations = { resize: local_assigns[:in_gallery] ? "800x600>" : "1024x768>" } %>
attachment--<%= blob.filename.extension %>"> - <% if blob.variable? %> - <%= image_tag blob.variant(transformations) %> - <% elsif blob.previewable? %> - <%= image_tag blob.preview(transformations) %> + <% if blob.representable? %> + <%= image_tag blob.representation(resize_to_fit: local_assigns[:in_gallery] ? [ 800, 600 ] : [ 1024, 768 ]) %> <% end %>
-- cgit v1.2.3