I am using Featherlight version 1.5.0 in my design. I can disable the right-click on the thumbnail images with this snippet of JavaScript:
<script type="text/javascript">
$('img').bind('contextmenu', function(e) {
return false;
});
</script>
But this doesn't work with link images, which pops up when the thumbnail is clicked. Is there anyway that right-click can be disabled on the link images?