# HG changeset patch # User Brian Neal # Date 1446417833 21600 # Node ID 19b5a6ae3bcaa7359335d43140dc033fcd3ad8d3 # Parent 6816c5189525bcedec8df06478e8384a6d63b1d9 Use https for google maps (bandmap & membermap). diff -r 6816c5189525 -r 19b5a6ae3bca bandmap/static/js/bandmap.js --- a/bandmap/static/js/bandmap.js Sun Nov 01 15:59:12 2015 -0600 +++ b/bandmap/static/js/bandmap.js Sun Nov 01 16:43:53 2015 -0600 @@ -53,8 +53,8 @@ var marker = new google.maps.Marker({ position: {lat: band.lat, lng: band.lon}, title: band.name, - icon: band.is_active ? "http://maps.google.com/mapfiles/ms/icons/green-dot.png" - : "http://maps.google.com/mapfiles/ms/icons/red-dot.png", + icon: band.is_active ? "https://maps.google.com/mapfiles/ms/icons/green-dot.png" + : "https://maps.google.com/mapfiles/ms/icons/red-dot.png", map: bandmap }); google.maps.event.addListener(marker, 'click', function() { diff -r 6816c5189525 -r 19b5a6ae3bca sg101/templates/membermap/index.html --- a/sg101/templates/membermap/index.html Sun Nov 01 15:59:12 2015 -0600 +++ b/sg101/templates/membermap/index.html Sun Nov 01 16:43:53 2015 -0600 @@ -3,7 +3,7 @@ {% block title %}Member Map{% endblock %} {% block custom_js %} - + {{ form.media }}