diff options
author | smain@google.com <smain@google.com> | 2014-10-03 22:13:14 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-10-03 22:13:14 +0000 |
commit | 8267ffccbe58ea348a53a0e6058bf902d6e8932a (patch) | |
tree | b1c9f59759316c597d24a888aeca5dbc7d0835b0 | |
parent | 32cfe2bbc71091a1ab282d5c7e4df7db5f6051e6 (diff) | |
parent | cef9aab68ec45340186261d39ded6261ba1c5966 (diff) | |
download | frameworks_base-8267ffccbe58ea348a53a0e6058bf902d6e8932a.zip frameworks_base-8267ffccbe58ea348a53a0e6058bf902d6e8932a.tar.gz frameworks_base-8267ffccbe58ea348a53a0e6058bf902d6e8932a.tar.bz2 |
am cef9aab6: Merge "make sdk download links use HTTPS bug: 8033954" into klp-modular-docs
* commit 'cef9aab68ec45340186261d39ded6261ba1c5966':
make sdk download links use HTTPS bug: 8033954
-rw-r--r-- | docs/html/sdk/download.jd | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/sdk/download.jd b/docs/html/sdk/download.jd index 4329102..52432cf 100644 --- a/docs/html/sdk/download.jd +++ b/docs/html/sdk/download.jd @@ -14,9 +14,9 @@ hide_license_footer=true if (location.indexOf('?v=') != -1) { var filename = location.substring(location.indexOf('=')+1,location.length); if (document.getElementById('checkbox').checked) { - document.location = "http://dl.google.com/android/" + filename; + document.location = "https://dl.google.com/android/" + filename; } - document.getElementById('click-download').setAttribute("href", "http://dl.google.com/android/" + document.getElementById('click-download').setAttribute("href", "https://dl.google.com/android/" + filename); $("#terms-form").hide(500); $("#next-steps").show(500); |