summaryrefslogtreecommitdiff
path: root/includes/sys_template.php
diff options
context:
space:
mode:
authorBot <bot@myigel.name>2018-08-11 22:16:57 +0200
committerIgor Scheller <igor.scheller@igorshp.de>2018-08-11 22:16:57 +0200
commit28349b69a8e591ddd2472bd53a3029de96444696 (patch)
tree77e5575fb777768718546a398fa797c041117970 /includes/sys_template.php
parent3d245660c53da4b4da832c3139329e091dbfac3d (diff)
Changed JS to use single quotes instead of double quotes
Diffstat (limited to 'includes/sys_template.php')
-rw-r--r--includes/sys_template.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/includes/sys_template.php b/includes/sys_template.php
index a988ca7c..986270b5 100644
--- a/includes/sys_template.php
+++ b/includes/sys_template.php
@@ -231,12 +231,12 @@ function toolbar_popover($glyphicon, $label, $content, $class = '')
. ' <span class="caret"></span></a>
<script type="text/javascript">
$(function(){
- $("#' . $dom_id . '").popover({
- trigger: "focus",
+ $(\'#' . $dom_id . '\').popover({
+ trigger: \'focus\',
html: true,
- content: "' . addslashes(join('', $content)) . '",
- placement: "bottom",
- container: "#navbar-collapse-1"
+ content: \'' . addslashes(join('', $content)) . '\',
+ placement: \'bottom\',
+ container: \'#navbar-collapse-1\'
})
});
</script></li>';