changes to messages popover
This commit is contained in:
parent
4589a505e8
commit
69878fa458
|
@ -66,10 +66,10 @@ function toolbar_dropdown($glyphicon, $label, $submenu, $class = '') {
|
|||
|
||||
function toolbar_popover($glyphicon, $label, $content, $class = '') {
|
||||
$id = md5(microtime() . $glyphicon . $label);
|
||||
return '<li class="dropdown ' . $class . '">
|
||||
<a id="' . $id . '" href="#">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . ' <span class="caret"></span></a>
|
||||
return '<li class="dropdown messages ' . $class . '">
|
||||
<a id="' . $id . '" href="#" tabindex="0">' . ($glyphicon != '' ? '<span class="glyphicon glyphicon-' . $glyphicon . '"></span> ' : '') . $label . ' <span class="caret"></span></a>
|
||||
<script type="text/javascript">
|
||||
$(function(){$("#' . $id . '").effect("highlight", {color: "#A94442"}, 500); $("#' . $id . '").popover({trigger: "focus", html: true, content: "' . addslashes(join('', $content)) . '", placement: "bottom", container: "body"})});
|
||||
$(document).ready(function(){$("#' . $id . '").popover({trigger: "focus", html: true, content: "' . addslashes(join('', $content)) . '", placement: "bottom", container: "body"})});
|
||||
</script></li>';
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue