This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* globals jQuery, Modernizr */ | |
'use strict' | |
jQuery(function ($) { | |
var productImageHover = function () { | |
if (!Modernizr.touchevents) { | |
// Using mouseenter / mouserleave incase of ajaxy stuff | |
$(document).on('mouseenter mouseleave', '.c-image img', function () { | |
var swapImg = this.getAttribute('data-swap-src') | |
var img = this.getAttribute('src') |