protected $_init;
+ public $relatedAnimation = '';
+
protected $_cssContainer = null;
protected $_htmlContainer = null;
{
$addContent = $this->getAdditionnalContent();
+ if ($this->relatedAnimation) {
+ $addContent .= ' data-related-animation="' . $this->relatedAnimation . '"';
+ }
+
$attached = $this->attached ? ' data-attached="' . $this->attached . '" ' : '';
return '<div class="' . $this->getHTMLContainerClass() . '" style="mix-blend-mode:' . $this->blendmode . ';" 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>';
}