try a different pair of characters for expanded/collapsed toc entries
svn: r10626 original commit: f4342ce47cac570d746fd4e423aad3a527e550a8
This commit is contained in:
parent
b5ffac92b0
commit
84c53e5ada
|
@ -385,7 +385,7 @@
|
|||
[title "Expand/Collapse"]
|
||||
[class "tocviewtoggle"]
|
||||
[onclick ,(format "TocviewToggle(this,\"~a\");" id)])
|
||||
,(if expand? 9662 9654))))
|
||||
,(if expand? 9660 9658))))
|
||||
(td () ,@num)
|
||||
(td () ,@title))))
|
||||
`(div ([class "tocviewlist"]
|
||||
|
|
|
@ -59,7 +59,7 @@ function TocviewToggle(glyph,id) {
|
|||
var s = document.getElementById(id).style;
|
||||
var expand = s.display == "none";
|
||||
s.display = expand ? "block" : "none";
|
||||
glyph.innerHTML = expand ? "▾" : "▶";
|
||||
glyph.innerHTML = expand ? "▼" : "►";
|
||||
}
|
||||
|
||||
// `noscript' is problematic in some browsers (always renders as a
|
||||
|
|
Loading…
Reference in New Issue
Block a user