Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3164)

Unified Diff: dashboard/ui/js/changelog.js

Issue 148963013: Omit protocol part in URLs in changelog pages. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/perf.git@master
Patch Set: Omit protocol in js/changelog.js as well. Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « dashboard/ui/changelog_webrtc.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dashboard/ui/js/changelog.js
diff --git a/dashboard/ui/js/changelog.js b/dashboard/ui/js/changelog.js
index 315e963297c0215e2dd1724f143ec56f18d238f3..630de0ad8f407fefab14e71a76e5e10a7f3d03d7 100644
--- a/dashboard/ui/js/changelog.js
+++ b/dashboard/ui/js/changelog.js
@@ -145,7 +145,7 @@ function render_log(svnRootUrl, svnPath, svnRange, viewvcUrl) {
return;
gViewvcUrl = viewvcUrl;
- var url = "http://" + location.host + "/cgi-bin/svn-log?url=" +
+ var url = "//" + location.host + "/cgi-bin/svn-log?url=" +
svnRootUrl + unescape(svnPath) + "&range=" + unescape(svnRange);
// global 'gContent' variable: a hidden iframe used to fetch svn data.
« no previous file with comments | « dashboard/ui/changelog_webrtc.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698