You need to replace the code of lib/web/magnifier/magnifier.js in your theme as below.
Find
Replace
Find
$(document).on('mousemove', onMousemove);
_init($box, gOptions);
Replace
$box.on('mousemove', onMousemove);
/*Code By Jaydip*/
$box.on('mouseleave', mouseleave);
function mouseleave(e) {
onThumbLeave();
isOverThumb = false;
$magnifierPreview.addClass(MagnifyCls.magnifyHidden);
}
/*Code By Jaydip*/
_init($box, customUserOptions);
No comments:
Post a Comment