Change nodecdn URLs to use https

This commit is contained in:
David Vierra 2015-04-16 15:39:20 -10:00
parent 91c20b3101
commit f2fa38684f
2 changed files with 3 additions and 3 deletions

View File

@ -36,11 +36,11 @@ not well-tested and are not recommended for serious use.
<td></td>
<td colspan="2">
<a class="btn btn-default always-ltr x64"
href="http://download.nodecdn.net/containers/mcedit/download/dev/mcedit2-win64-{{download.rev}}.exe">
href="https://download.nodecdn.net/containers/mcedit/download/dev/mcedit2-win64-{{download.rev}}.exe">
<span class="glyphicon glyphicon-download-alt" aria-hidden="true"
style="margin-right:10px"></span>Windows (64-bit)</a>
<a class="btn btn-default always-ltr x32"
href="http://download.nodecdn.net/containers/mcedit/download/dev/mcedit2-win32-{{download.rev}}.exe">
href="https://download.nodecdn.net/containers/mcedit/download/dev/mcedit2-win32-{{download.rev}}.exe">
<span class="glyphicon glyphicon-download-alt" aria-hidden="true"
style="margin-right:10px"></span>Windows (32-bit)</a>
</td>

View File

@ -1,5 +1,5 @@
var dlApp = angular.module('dlApp', []);
var MODEL_URL = 'http://download.nodecdn.net/containers/mcedit/downloads.jsonp';
var MODEL_URL = 'https://download.nodecdn.net/containers/mcedit/downloads.jsonp';
var DL_SCOPE;