From f2fa38684f4154510f2f6bca05b943ac222e8567 Mon Sep 17 00:00:00 2001 From: David Vierra Date: Thu, 16 Apr 2015 15:39:20 -1000 Subject: [PATCH] Change nodecdn URLs to use https --- downloads.html | 4 ++-- js/ng/dl-control.js | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/downloads.html b/downloads.html index f7e30be..2cdc418 100644 --- a/downloads.html +++ b/downloads.html @@ -36,11 +36,11 @@ not well-tested and are not recommended for serious use. + href="https://download.nodecdn.net/containers/mcedit/download/dev/mcedit2-win64-{{download.rev}}.exe"> Windows (64-bit) + href="https://download.nodecdn.net/containers/mcedit/download/dev/mcedit2-win32-{{download.rev}}.exe"> Windows (32-bit) diff --git a/js/ng/dl-control.js b/js/ng/dl-control.js index 1df7b99..8b459a3 100644 --- a/js/ng/dl-control.js +++ b/js/ng/dl-control.js @@ -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;