(function ($) {
// Add a single popover to the sl-search-result-minified that shows the legend data for all product theme icons
$('sl-search-result-minified').popover({
title: function () {
var code = $(this).attr('class').split(' ')[1];
var $legend = $('.productTheme-legend .theme-icon[data-code="' + code + '"]');
return $legend.length ? $legend.data('title') : null;
},
content: function () {
var code = $(this).attr('class').split(' ')[1];
var $legend = $('.productTheme-legend .theme-icon[data-code="' + code + '"]');
return $legend.length ? $legend.data('content') : null;
},
trigger: 'hover',
selector: 'i.productTheme.SFCLUB, i.productTheme.SFKIDS, i.productTheme.SFBOARD, i.productTheme.SFPINGUIN, i.productTheme.SFSTART, i.productTheme.SFBEGELEID, i.packageType.SZI, i.packageType.SDR',
});
})(jQuery);
< terug