Skip to content
Snippets Groups Projects
Commit 9533542d authored by Moritz Strohm's avatar Moritz Strohm Committed by David Siegfried
Browse files

fix for BIESt #521

Merge request studip/studip!663
parent cbaf0285
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ STUDIP.domReady(() => { ...@@ -38,7 +38,7 @@ STUDIP.domReady(() => {
}); });
// Close search on click on page. // Close search on click on page.
$('div#flex-header, div#layout_page, div#layout_footer').on('click', function() { $('div#flex-header, div#layout_page, #layout_footer').on('click', function() {
if (!$('#globalsearch-input').hasClass('hidden-js')) { if (!$('#globalsearch-input').hasClass('hidden-js')) {
STUDIP.GlobalSearch.toggleSearchBar(false, false); STUDIP.GlobalSearch.toggleSearchBar(false, false);
} }
......
<!-- Beginn Footer --> <!-- Beginn Footer -->
<?= SkipLinks::addIndex(_('Fußzeile'), 'layout_footer',900) ?> <?= SkipLinks::addIndex(_('Fußzeile'), 'layout_footer',900) ?>
<div id="layout_footer"> <footer id="layout_footer" aria-label="<?= _('Fußzeile') ?>">
<? if (is_object($GLOBALS['user']) && $GLOBALS['user']->id != 'nobody') : ?> <? if (is_object($GLOBALS['user']) && $GLOBALS['user']->id != 'nobody') : ?>
<div id="footer"> <div id="footer">
<? printf(_('Sie sind angemeldet als %s (%s)'), <? printf(_('Sie sind angemeldet als %s (%s)'),
...@@ -52,7 +52,7 @@ ...@@ -52,7 +52,7 @@
<? endforeach; ?> <? endforeach; ?>
</ul> </ul>
<? endif; ?> <? endif; ?>
</div> </footer>
<?= $this->render_partial('debug/db-log.php') ?> <?= $this->render_partial('debug/db-log.php') ?>
<?= $this->render_partial('responsive-navigation.php') ?> <?= $this->render_partial('responsive-navigation.php') ?>
<!-- Ende Footer --> <!-- Ende Footer -->
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment