From bde997993991cde342df8a23f1ef8e97e55e6455 Mon Sep 17 00:00:00 2001 From: Vince Jones Date: Tue, 11 Oct 2016 12:39:30 -0500 Subject: [PATCH] Mixed Content being loaded over https The marker icon was being loaded over http which breaks on https environments. Loading as https does not have any ill effects for http environments. --- resources/js/templates.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/js/templates.js b/resources/js/templates.js index 61efebe..11118cc 100644 --- a/resources/js/templates.js +++ b/resources/js/templates.js @@ -920,7 +920,7 @@ function program5(depth0,data,depth1) { function program7(depth0,data) { - return "http://mt.googleapis.com/vt/icon/name=icons/spotlight/spotlight-poi.png&scale=2"; + return "https://mt.googleapis.com/vt/icon/name=icons/spotlight/spotlight-poi.png&scale=2"; } function program9(depth0,data) { @@ -1442,4 +1442,4 @@ function program2(depth0,data) { buffer += "\n\n"; return buffer; }); -}()); \ No newline at end of file +}());