summaryrefslogtreecommitdiff
path: root/inc/parser
diff options
context:
space:
mode:
Diffstat (limited to 'inc/parser')
-rw-r--r--inc/parser/xhtml.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/inc/parser/xhtml.php b/inc/parser/xhtml.php
index f6dcbc038..73c2ada1c 100644
--- a/inc/parser/xhtml.php
+++ b/inc/parser/xhtml.php
@@ -86,11 +86,10 @@ class Doku_Renderer_xhtml extends Doku_Renderer {
function toc_open() {
global $lang;
$this->doc .= '<div class="toc">'.DOKU_LF;
- $this->doc .= '<div class="tocheader">';
- $this->doc .= ' <script type="text/javascript">showTocToggle("+","-")</script>';
+ $this->doc .= '<div class="tocheader" id="toc__header">';
$this->doc .= $lang['toc'];
$this->doc .= '</div>'.DOKU_LF;
- $this->doc .= '<div id="tocinside">'.DOKU_LF;
+ $this->doc .= '<div id="toc__inside">'.DOKU_LF;
}
function tocbranch_open($level) {