godoc: add link to expand/close all examples
Fixes golang/go#3081 Change-Id: I096b22691a08d72b88dbe925e17893d24ba3c992 Reviewed-on: https://go-review.googlesource.com/118935 Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
This commit is contained in:
parent
c6269430a5
commit
465e6f3992
|
@ -329,6 +329,28 @@ function addPermalinks() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$(".js-expandAll").click(function() {
|
||||||
|
if ($(this).hasClass("collapsed")) {
|
||||||
|
toggleExamples('toggle');
|
||||||
|
$(this).text("(Collapse All)");
|
||||||
|
} else {
|
||||||
|
toggleExamples('toggleVisible');
|
||||||
|
$(this).text("(Expand All)");
|
||||||
|
}
|
||||||
|
$(this).toggleClass("collapsed")
|
||||||
|
});
|
||||||
|
|
||||||
|
function toggleExamples(className) {
|
||||||
|
// We need to explicitly iterate through divs starting with "example_"
|
||||||
|
// to avoid toggling Overview and Index collapsibles.
|
||||||
|
$("[id^='example_']").each(function() {
|
||||||
|
// Check for state and click it only if required.
|
||||||
|
if ($(this).hasClass(className)) {
|
||||||
|
$(this).find('.toggleButton').first().click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
generateTOC();
|
generateTOC();
|
||||||
addPermalinks();
|
addPermalinks();
|
||||||
|
|
|
@ -90,6 +90,7 @@
|
||||||
{{if $.Examples}}
|
{{if $.Examples}}
|
||||||
<div id="pkg-examples">
|
<div id="pkg-examples">
|
||||||
<h3>Examples</h3>
|
<h3>Examples</h3>
|
||||||
|
<div class="js-expandAll expandAll collapsed">(Expand All)</div>
|
||||||
<dl>
|
<dl>
|
||||||
{{range $.Examples}}
|
{{range $.Examples}}
|
||||||
<dd><a class="exampleLink" href="#example_{{.Name}}">{{example_name .Name}}</a></dd>
|
<dd><a class="exampleLink" href="#example_{{.Name}}">{{example_name .Name}}</a></dd>
|
||||||
|
|
|
@ -912,6 +912,28 @@ function addPermalinks() {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$(".js-expandAll").click(function() {
|
||||||
|
if ($(this).hasClass("collapsed")) {
|
||||||
|
toggleExamples('toggle');
|
||||||
|
$(this).text("(Collapse All)");
|
||||||
|
} else {
|
||||||
|
toggleExamples('toggleVisible');
|
||||||
|
$(this).text("(Expand All)");
|
||||||
|
}
|
||||||
|
$(this).toggleClass("collapsed")
|
||||||
|
});
|
||||||
|
|
||||||
|
function toggleExamples(className) {
|
||||||
|
// We need to explicitly iterate through divs starting with "example_"
|
||||||
|
// to avoid toggling Overview and Index collapsibles.
|
||||||
|
$("[id^='example_']").each(function() {
|
||||||
|
// Check for state and click it only if required.
|
||||||
|
if ($(this).hasClass(className)) {
|
||||||
|
$(this).find('.toggleButton').first().click();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
$(document).ready(function() {
|
$(document).ready(function() {
|
||||||
generateTOC();
|
generateTOC();
|
||||||
addPermalinks();
|
addPermalinks();
|
||||||
|
@ -1710,6 +1732,7 @@ function cgAddChild(tree, ul, cgn) {
|
||||||
{{if $.Examples}}
|
{{if $.Examples}}
|
||||||
<div id="pkg-examples">
|
<div id="pkg-examples">
|
||||||
<h3>Examples</h3>
|
<h3>Examples</h3>
|
||||||
|
<div class="js-expandAll expandAll collapsed">(Expand All)</div>
|
||||||
<dl>
|
<dl>
|
||||||
{{range $.Examples}}
|
{{range $.Examples}}
|
||||||
<dd><a class="exampleLink" href="#example_{{.Name}}">{{example_name .Name}}</a></dd>
|
<dd><a class="exampleLink" href="#example_{{.Name}}">{{example_name .Name}}</a></dd>
|
||||||
|
@ -3042,12 +3065,14 @@ pre .ln {
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
a,
|
||||||
.exampleHeading .text {
|
.exampleHeading .text,
|
||||||
|
.expandAll {
|
||||||
color: #375EAB;
|
color: #375EAB;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
a:hover,
|
a:hover,
|
||||||
.exampleHeading .text:hover {
|
.exampleHeading .text:hover,
|
||||||
|
.expandAll:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
.article a {
|
.article a {
|
||||||
|
@ -3164,6 +3189,20 @@ div#nav table td {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pkg-examples h3 {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pkg-examples dl {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expandAll {
|
||||||
|
cursor: pointer;
|
||||||
|
float: left;
|
||||||
|
margin: 1.25rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
div#topbar {
|
div#topbar {
|
||||||
background: #E0EBF5;
|
background: #E0EBF5;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
|
|
|
@ -40,12 +40,14 @@ pre .ln {
|
||||||
}
|
}
|
||||||
|
|
||||||
a,
|
a,
|
||||||
.exampleHeading .text {
|
.exampleHeading .text,
|
||||||
|
.expandAll {
|
||||||
color: #375EAB;
|
color: #375EAB;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
a:hover,
|
a:hover,
|
||||||
.exampleHeading .text:hover {
|
.exampleHeading .text:hover,
|
||||||
|
.expandAll:hover {
|
||||||
text-decoration: underline;
|
text-decoration: underline;
|
||||||
}
|
}
|
||||||
.article a {
|
.article a {
|
||||||
|
@ -162,6 +164,20 @@ div#nav table td {
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#pkg-examples h3 {
|
||||||
|
float: left;
|
||||||
|
}
|
||||||
|
|
||||||
|
#pkg-examples dl {
|
||||||
|
clear: both;
|
||||||
|
}
|
||||||
|
|
||||||
|
.expandAll {
|
||||||
|
cursor: pointer;
|
||||||
|
float: left;
|
||||||
|
margin: 1.25rem 0;
|
||||||
|
}
|
||||||
|
|
||||||
div#topbar {
|
div#topbar {
|
||||||
background: #E0EBF5;
|
background: #E0EBF5;
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
|
|
Loading…
Reference in New Issue