From a89089ae079bb6b99684c315f591d4ddbfad2d26 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Fri, 25 Jul 2014 10:29:02 +1000 Subject: [PATCH] [release-branch.go1.3] go.tools/godoc: drop scheme from links MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ««« CL 111640043 / a2b9ff935cf3 go.tools/godoc: drop scheme from links golang.org now serves HTTPS, so the scripts should work with either HTTP ot HTTPS. LGTM=bradfitz R=golang-codereviews, bradfitz CC=golang-codereviews https://golang.org/cl/111640043 »»» TBR=bradfitz CC=golang-codereviews https://golang.org/cl/112690043 --- godoc/static/godocs.js | 4 ++-- godoc/static/static.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/godoc/static/godocs.js b/godoc/static/godocs.js index 232f1170..81dd1210 100644 --- a/godoc/static/godocs.js +++ b/godoc/static/godocs.js @@ -152,7 +152,7 @@ function setupDropdownPlayground() { 'runEl': $('.run', div), 'fmtEl': $('.fmt', div), 'shareEl': $('.share', div), - 'shareRedirect': 'http://play.golang.org/p/' + 'shareRedirect': '//play.golang.org/p/' }); }, function() { @@ -176,7 +176,7 @@ function setupInlinePlayground() { 'runEl': $('.run', el), 'fmtEl': $('.fmt', el), 'shareEl': $('.share', el), - 'shareRedirect': 'http://play.golang.org/p/' + 'shareRedirect': '//play.golang.org/p/' }); // Make the code textarea resize to fit content. diff --git a/godoc/static/static.go b/godoc/static/static.go index eab34bc6..992b2250 100644 --- a/godoc/static/static.go +++ b/godoc/static/static.go @@ -731,7 +731,7 @@ function setupDropdownPlayground() { 'runEl': $('.run', div), 'fmtEl': $('.fmt', div), 'shareEl': $('.share', div), - 'shareRedirect': 'http://play.golang.org/p/' + 'shareRedirect': '//play.golang.org/p/' }); }, function() { @@ -755,7 +755,7 @@ function setupInlinePlayground() { 'runEl': $('.run', el), 'fmtEl': $('.fmt', el), 'shareEl': $('.share', el), - 'shareRedirect': 'http://play.golang.org/p/' + 'shareRedirect': '//play.golang.org/p/' }); // Make the code textarea resize to fit content.