Fix New Messages navbar display and make the Messages link clickable.

This commit is contained in:
digitaldonkey 2020-01-01 18:55:40 +01:00 committed by Igor Scheller
parent 2d9c722b3e
commit 5c54d4787f
1 changed files with 2 additions and 2 deletions

View File

@ -222,11 +222,11 @@ function toolbar_popover($glyphicon, $label, $content, $class = '')
<script type="text/javascript"> <script type="text/javascript">
$(function(){ $(function(){
$(\'#' . $dom_id . '\').popover({ $(\'#' . $dom_id . '\').popover({
trigger: \'focus\', trigger: \'click\',
html: true, html: true,
content: \'' . addslashes(join('', $content)) . '\', content: \'' . addslashes(join('', $content)) . '\',
placement: \'bottom\', placement: \'bottom\',
container: \'#navbar-collapse-1\' container: \'#navbar-offcanvas\'
}) })
}); });
</script></li>'; </script></li>';