You can disable the magnifier after the mouse moves out of the thumbnail image for the first time, or at least simulate disabling it, by finding the below chunk of code inside the .js file, and adding to it the new part in red:
Code:
$tracker.mouseover(function(e){
$cursorshade.add($magnifier).add($statusdiv).removeClass('featuredimagezoomerhidden');
$tracker.data('premouseout', false);
}).mouseout(function(e){
$cursorshade.add($magnifier).add($statusdiv.not('.preloadevt')).addClass('featuredimagezoomerhidden');
$tracker.data('premouseout', true);
}).mousemove(function(e){ //save tracker mouse position for initial magnifier appearance, if needed
lastpage.pageX = e.pageX;
lastpage.pageY = e.pageY;
});
$tracker.mouseout(function(){
$tracker.unbind()
})
Bookmarks