1
0
mirror of https://github.com/golang/go synced 2024-11-21 16:04:45 -07:00

doc: hide playground on front page if playground disabled

Fixes #5630.

R=golang-dev, bradfitz
CC=golang-dev
https://golang.org/cl/12884046
This commit is contained in:
Andrew Gerrand 2013-08-22 11:12:44 +10:00
parent 4a7a72b8c1
commit a48702eb39

View File

@ -117,15 +117,19 @@ function feedLoaded(result) {
}
window.initFuncs.push(function() {
// Set up playground.
playground({
"codeEl": "#learn .code",
"outputEl": "#learn .output",
"runEl": "#learn .run",
"shareEl": "#learn .share",
"shareRedirect": "http://play.golang.org/p/",
"toysEl": "#learn .toys select"
});
// Set up playground if enabled.
if (window.playground) {
window.playground({
"codeEl": "#learn .code",
"outputEl": "#learn .output",
"runEl": "#learn .run",
"shareEl": "#learn .share",
"shareRedirect": "http://play.golang.org/p/",
"toysEl": "#learn .toys select"
});
} else {
$('#learn').hide()
}
// Load blog feed.
$('<script/>').attr('text', 'text/javascript')