1
0
mirror of https://github.com/golang/go synced 2024-11-25 03:17:58 -07:00

godoc: show contents in correct order, expand sections on click

R=dsymonds
CC=gobot, golang-dev
https://golang.org/cl/6588079
This commit is contained in:
Andrew Gerrand 2012-10-04 11:21:37 +10:00
parent ce6acefc5d
commit e7f453148c
2 changed files with 4 additions and 2 deletions

View File

@ -208,6 +208,8 @@ function godocs_onload() {
godocs_bindToggles("toggleVisible"); godocs_bindToggles("toggleVisible");
godocs_bindToggleLinks("exampleLink", "example_"); godocs_bindToggleLinks("exampleLink", "example_");
godocs_bindToggleLinks("overviewLink", ""); godocs_bindToggleLinks("overviewLink", "");
godocs_bindToggleLinks("examplesLink", "");
godocs_bindToggleLinks("indexLink", "");
} }
bindEvent(window, 'load', godocs_onload); bindEvent(window, 'load', godocs_onload);

View File

@ -17,10 +17,10 @@
</dl> </dl>
<dl> <dl>
<dd><a href="#pkg-overview" class="overviewLink">Overview</a></dd> <dd><a href="#pkg-overview" class="overviewLink">Overview</a></dd>
<dd><a href="#pkg-index">Index</a></dd>
{{if $.Examples}} {{if $.Examples}}
<dd><a href="#pkg-examples">Examples</a></dd> <dd><a href="#pkg-examples" class="examplesLink">Examples</a></dd>
{{end}} {{end}}
<dd><a href="#pkg-index" class="indexLink">Index</a></dd>
{{if $.Dirs}} {{if $.Dirs}}
<dd><a href="#pkg-subdirectories">Subdirectories</a></dd> <dd><a href="#pkg-subdirectories">Subdirectories</a></dd>
{{end}} {{end}}