Skip to content

Commit

Permalink
remove unused autoplay class
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkejN committed Jan 6, 2021
1 parent b57890e commit cf20d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Resources/contao/templates/ce_abrstreaming.html5
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<?php $this->block('content'); ?>

<figure class="<?= $this->containerClass ?>">
<video class="abr-streaming<?php if ($this->autoplay): ?> autoplay<?php endif; ?>"<?= $this->size ?><?php if ($this->poster): ?> poster="<?= $this->poster ?>"<?php endif; ?><?php if ($this->preload): ?> preload="<?= $this->preload ?>"<?php endif; ?> <?= implode(' ', $this->attributes) ?>>
<video class="abr-streaming"<?= $this->size ?><?php if ($this->poster): ?> poster="<?= $this->poster ?>"<?php endif; ?><?php if ($this->preload): ?> preload="<?= $this->preload ?>"<?php endif; ?> <?= implode(' ', $this->attributes) ?>>
<?php foreach ($this->files as $file): ?>
<source type="<?= $file->mime ?>" src="<?= $file->path.$this->range ?>" title="<?= $file->title ?>">
<?php endforeach; ?>
Expand Down

0 comments on commit cf20d24

Please sign in to comment.