Sha256: 112b53e6dc009d3e628012a111716fa97b02ae513a415c805217f38ef6b808d2

Contents?: true

Size: 404 Bytes

Versions: 5

Compression:

Stored size: 404 Bytes

Contents

- if @product.photos?
  = image_tag @product.photos.first.photo.url(:large), :id => 'hero_image'

  - if @product.photos.size > 1
    %p.thumbs
      - @product.photos.each do |photo|
        - img = image_tag photo.photo.url(:thumb), :alt => photo.alt
        = link_to img, photo.photo.url(:large)

:javascript
  $(document).ready(function() {
    $(".thumbs a").simple_photo_swap('hero_image');
  });

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
ecommerce-0.0.6 app/views/products/show/_photos.haml
ecommerce-0.0.5 app/views/products/show/_photos.haml
ecommerce-0.0.4 app/views/products/show/_photos.haml
ecommerce-0.0.3 app/views/products/show/_photos.haml
ecommerce-0.0.2 app/views/products/show/_photos.haml