<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">jQuery(document).ready(function($) {
	"use strict";

	$(".flex-control-thumbs").addClass("owl-carousel");
	$(".flex-control-thumbs").attr("id","product-thumbnails");
	
	$('.flex-control-thumbs').owlCarousel({
		items: $('.woocommerce-product-gallery.woocommerce-product-gallery--with-images').attr('data-columns'),
		margin:7,
		pagination: true,
		rewindNav: true,
		dots: false,
		responsive:{
			0:{
				items:4
			},
			600:{
				items:4
			},
			1300:{
				items:$('.woocommerce-product-gallery.woocommerce-product-gallery--with-images').attr('data-columns')
			}
		}

	});

});</pre></body></html>