summaryrefslogtreecommitdiff
path: root/inc/html.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/html.php')
-rw-r--r--inc/html.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/inc/html.php b/inc/html.php
index cdcd166d9..87affd47b 100644
--- a/inc/html.php
+++ b/inc/html.php
@@ -939,12 +939,16 @@ function html_list_index($item){
function html_li_index($item){
global $INFO;
+ $class = '';
+ $id = '';
+
if($item['type'] == "f"){
// scroll to the current item
if($item['id'] == $INFO['id']) {
$id = ' id="scroll__here"';
+ $class = ' bounce';
}
- return '<li class="level'.$item['level'].'" '.$id.'>';
+ return '<li class="level'.$item['level'].$class.'" '.$id.'>';
}elseif($item['open']){
return '<li class="open">';
}else{