]> _ Git - fluidbook_tools.git/commitdiff
#7866
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 2 Jan 2026 15:52:38 +0000 (16:52 +0100)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Fri, 2 Jan 2026 15:52:38 +0000 (16:52 +0100)
src/Links/Link.php

index cd910441311768c6df58461d06a700ccf87c9c09..470cd9d119b41779c1ef8f9751b55cd69bf6474e 100644 (file)
@@ -711,6 +711,10 @@ class Link
             $addContent .= ' data-visibility-os="' . $this->visibility_os . '"';
         }
 
+        if ($this->accessibility) {
+            $addContent .= ' data-accessible-content="1"';
+        }
+
         $attached = $this->attached ? ' data-attached="' . $this->attached . '" ' : '';
         return '<div class="' . $this->getHTMLContainerClass() . '" style="mix-blend-mode:' . $this->blendmode . ';' . $this->inlineStyles . '" data-blendmode="' . $this->blendmode . '" ' . $attached . ' data-hidden="' . $this->hidden . '" data-scorm="' . $this->scorm . '" data-id="' . $this->uid . '" id="l_' . $this->id . '"' . $addContent . '>' . $this->getHTMLContent() . '</div>';
     }