Skip to content

Commit

Permalink
remove invisible and block class from templates
Browse files Browse the repository at this point in the history
  • Loading branch information
fritzmg committed Jul 11, 2019
1 parent b5a14de commit edfaebe
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Resources/contao/templates/mod_mmenu.html5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<!-- indexer::stop -->
<nav class="<?= $this->class; ?> invisible block"<?= $this->cssID; ?><?php if ($this->style): ?> style="<?= $this->style; ?>"<?php endif; ?>>
<nav class="<?= $this->class; ?>"<?= $this->cssID; ?><?php if ($this->style): ?> style="<?= $this->style; ?>"<?php endif; ?>>

<?php if ($this->headline): ?>
<<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>>
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/templates/mod_mmenuCustom.html5
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<!-- indexer::stop -->
<nav class="<?= $this->class; ?> invisible block"<?= $this->cssID; ?><?php if ($this->style): ?> style="<?= $this->style; ?>"<?php endif; ?>>
<nav class="<?= $this->class; ?>"<?= $this->cssID; ?><?php if ($this->style): ?> style="<?= $this->style; ?>"<?php endif; ?>>

<?php if ($this->headline): ?>
<<?= $this->hl ?>><?= $this->headline ?></<?= $this->hl ?>>
Expand Down
2 changes: 1 addition & 1 deletion src/Resources/contao/templates/mod_mmenuHtml.html5
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

<div class="<?= $this->class ?> invisible block"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
<div class="<?= $this->class ?>"<?= $this->cssID ?><?php if ($this->style): ?> style="<?= $this->style ?>"<?php endif; ?>>
<div>

<?php if ($this->headline): ?>
Expand Down

0 comments on commit edfaebe

Please sign in to comment.