mirror of
https://github.com/yogeshojha/rengine.git
synced 2026-09-18 07:47:42 +02:00
10 lines
312 B
JavaScript
10 lines
312 B
JavaScript
$(function(){
|
|
var car_m_2 = $('#car_m_2').data('carousel');
|
|
var thumbs = $('#car_m_2_thumbs > .thumb');
|
|
$.each(thumbs, function(){
|
|
var thumb = $(this), index = thumb.data('index') - 1;
|
|
thumb.on('click', function(){
|
|
car_m_2.slideTo(index);
|
|
});
|
|
});
|
|
}); |