Sha256: 4a308889cf89475387e1ea8424b69dd0a159c6f5b0ed84c1ddeea7e4898f339b

Contents?: true

Size: 785 Bytes

Versions: 73

Compression:

Stored size: 785 Bytes

Contents

<%# no need for thumbnails unless there is more than one image %>
<% if (@product.images + @product.variant_images).uniq.size > 1 %>
  <ul id="product-thumbnails" class="thumbnails list-inline" data-hook>
    <% @product.images.each do |i| %>
      <li class='tmb-all tmb-<%= i.viewable.id %>'>
        <%= link_to(image_tag(i.attachment.url(:mini), class: "thumbnail"), i.attachment.url(:product)) %>
      </li>
    <% end %>

    <% if @product.has_variants? %>
      <% @product.variant_images.each do |i| %>
        <% next if @product.images.include?(i) %>
        <li class='vtmb tmb-<%= i.viewable.id %>'>
          <%= link_to(image_tag(i.attachment.url(:mini), class: "thumbnail"), i.attachment.url(:product)) %>
        </li>
      <% end %>
    <% end %>
  </ul>
<% end %>

Version data entries

73 entries across 73 versions & 3 rubygems

Version Path
goca-spree-frontend-3.1.14.rails.5.0.1 app/views/spree/products/_thumbnails.html.erb
goca-spree-frontend-3.1.14.rails.5.0 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.4.6 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.2.9 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.1.14 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.5.0 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.3.6 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.2.8 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.1.13 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.5.0.rc2 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.5.0.rc1 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.4.5 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.3.5 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.4.4 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.4.3 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.3.4 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.2.7 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.1.12 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.4.2 app/views/spree/products/_thumbnails.html.erb
spree_frontend-3.3.3 app/views/spree/products/_thumbnails.html.erb