]> git.mxchange.org Git - friendica-addons.git/commitdiff
Added ALT and TITLE of original IMG to fancybox popup.
authorGrischa Brockhaus <github@brockha.us>
Sun, 18 Dec 2022 23:52:31 +0000 (00:52 +0100)
committerGrischa Brockhaus <github@brockha.us>
Sun, 18 Dec 2022 23:53:36 +0000 (00:53 +0100)
fancybox/CHANGELOG.md
fancybox/asset/fancybox/fancybox.config.js
fancybox/fancybox.php

index 3d676c0c96d9bb71f5a2e53545a802594535015f..d597e0bfd8707f1b139e31a0bd110276e205076d 100644 (file)
@@ -1,3 +1,11 @@
+### Version 1.05
+
+* Added ALT and TITLE of original IMG to fancybox popup.
+
+### Version 1.04
+
+* Update supporting upcoming imnagegrid in posts
 ### Version 1.03
 
 * imgages in body-attach with title / alt attribute get them removed while adding fancy attributes
index 2b9c4f418c21f9f1b09c954b7a26b87950ae7131..233b423f9f0625d5ddb3a2a0b26dabd7db12d79c 100644 (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') );
+        }
+    });
 });
\ No newline at end of file
index 565036223a7b91696d3c7b716feb0f97154a15f1..b96a90d34a236336c1a09ce064c9f36c2d6dda65 100644 (file)
@@ -2,7 +2,7 @@
 /**
  * Name: Fancybox
  * Description: Open media attachments of posts into a fancybox overlay.
- * Version: 1.04
+ * Version: 1.05
  * Author: Grischa Brockhaus <grischa@brockha.us>
  */