Sha256: ad977d1903aff8d815d3ec14f54f5fd80bd5dff7592592fab50acb50b5b20f8c
Contents?: true
Size: 1.95 KB
Versions: 25
Compression:
Stored size: 1.95 KB
Contents
var add_image_handlers = function() { $("#main-image").data('selectedThumb', $('#main-image img').attr('src')); $('ul.thumbnails li').eq(0).addClass('selected'); $('ul.thumbnails').delegate('a', 'click', function(event) { $("#main-image").data('selectedThumb', $(event.currentTarget).attr('href')); $("#main-image").data('selectedThumbId', $(event.currentTarget).parent().attr('id')); $(this).mouseout(function() { $('ul.thumbnails li').removeClass('selected'); $(event.currentTarget).parent('li').addClass('selected'); }); return false; }); $('ul.thumbnails').delegate('li', 'mouseenter', function(event) { $('#main-image img').attr('src', $(event.currentTarget).find('a').attr('href')); }); $('ul.thumbnails').delegate('li', 'mouseleave', function(event) { $('#main-image img').attr('src', $("#main-image").data('selectedThumb')); }); }; var show_variant_images = function(variant_id) { $('li.vtmb').hide(); $('li.vtmb-' + variant_id).show(); var currentThumb = $('#' + $("#main-image").data('selectedThumbId')); // if currently selected thumb does not belong to current variant, nor to common images, // hide it and select the first available thumb instead. if(!currentThumb.hasClass('vtmb-' + variant_id) && !currentThumb.hasClass('tmb-all')) { var thumb = $($('ul.thumbnails li:visible').eq(0)); var newImg = thumb.find('a').attr('href'); $('ul.thumbnails li').removeClass('selected'); thumb.addClass('selected'); $('#main-image img').attr('src', newImg); $("#main-image").data('selectedThumb', newImg); $("#main-image").data('selectedThumbId', thumb.attr('id')); } } $(document).ready(function() { add_image_handlers(); if($('#product-variants input[type=radio]').length > 0) { show_variant_images($('#product-variants input[type=radio]').eq(0).attr('value')); } $('#product-variants input[type=radio]').click(function (event) { show_variant_images(this.value); }); });
Version data entries
25 entries across 25 versions & 1 rubygems