From 3a3354aec6d4d0d0588b0e5f7a53f6eb5e727fea Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Tue, 29 Sep 2015 16:39:25 -0400 Subject: [PATCH] Fix displayed URLs in builder for HTTPS --- builder/_index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builder/_index.js b/builder/_index.js index de13fb3..e80ba99 100644 --- a/builder/_index.js +++ b/builder/_index.js @@ -25,7 +25,7 @@ var MUB = { * Get markup for new source LI element */ newLi : function () { - return '
  • http://' + location.host + '/' + + return '
  • ' + location.protocol + '//' + location.host + '/' + ' ' + '
  • '; },