diff options
author | Philip Häusler <msquare@notrademark.de> | 2015-12-12 19:27:53 +0100 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2015-12-12 19:27:53 +0100 |
commit | 0e0f7f0516a9adcb9e7215062fc86c1ab8eccdc6 (patch) | |
tree | cb00c5884c69b077f03087ca70f5754a95224cd6 | |
parent | 1b4afa0c7121e3a3de8a518b3b64195ff33cc07b (diff) |
fix #203: message popover not workin in safari
-rw-r--r-- | includes/sys_template.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php index 6beaa57a..da7afbcb 100644 --- a/includes/sys_template.php +++ b/includes/sys_template.php @@ -85,7 +85,7 @@ function toolbar_dropdown($glyphicon, $label, $submenu, $class = '') { function toolbar_popover($glyphicon, $label, $content, $class = '') { $id = md5(microtime() . $glyphicon . $label); return '<li class="dropdown messages ' . $class . '"> - <a id="' . $id . '" href="#">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') + <a id="' . $id . '" href="#" tabindex="0">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . ' <span class="caret"></span></a> <script type="text/javascript"> $(function(){ |