Added ALT and TITLE of original IMG to fancybox popup.

This commit is contained in:
Grischa Brockhaus 2022-12-19 00:52:31 +01:00
parent 4cdd24c871
commit f8295635c1
3 changed files with 17 additions and 1 deletions

View file

@ -2,4 +2,12 @@ $(document).ready(function() {
$.fancybox.defaults.loop = "true";
// this disables the colorbox hook found in frio/js/modal.js:34
$("body").off("click", ".wall-item-body a img");
// Adds ALT/TITLE text to fancybox
$('a[data-fancybox').fancybox({
afterLoad : function(instance, current) {
current.$image.attr('alt', current.opts.$orig.find('img').attr('alt') );
current.$image.attr('title', current.opts.$orig.find('img').attr('title') );
}
});
});