Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Use HTTPS for absolute URLs #47

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Locator_TCAPI/css/locationsco.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@

@import url(http://fonts.googleapis.com/css?family=Changa+One);
@import url(https://fonts.googleapis.com/css?family=Changa+One);

.clear {clear:both;}
html { height: 100% }
Expand Down
2 changes: 1 addition & 1 deletion Locator_TCAPI/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<script src="scripts/modernizr.custom.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" src="scripts/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="scripts/TinCanJS/build/tincan-min.js"></script>
<script type="text/javascript" src="http://maps.googleapis.com/maps/api/js?libraries=places&sensor=true"></script>
<script type="text/javascript" src="https://maps.googleapis.com/maps/api/js?libraries=places&sensor=true"></script>
<script src="scripts/scavenger.js" type="text/javascript" charset="utf-8"></script>
<script src="locations.js" type="text/javascript" charset="utf-8"></script>
</head>
Expand Down
2 changes: 1 addition & 1 deletion Locator_TCAPI/locations.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ var COURSE_DESC = "An exploration of museums in the greater Nashville TN area.";

var config = {
CurrentLocationTitle : "My Current Location",
CurrentLocationIcon : "http://maps.gstatic.com/mapfiles/ms2/micons/blue-dot.png",
CurrentLocationIcon : "https://maps.gstatic.com/mapfiles/ms2/micons/blue-dot.png",
Placemarks : [
{
name : "Parthenon",
Expand Down
2 changes: 1 addition & 1 deletion Locator_TCAPI/test_locations.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ var COURSE_DESC = "A sample course to display the usefulness of Tin Can and a lo

var config = {
CurrentLocationTitle : "My Current Location",
CurrentLocationIcon : "http:////maps.gstatic.com/mapfiles/ms2/micons/blue-dot.png",
CurrentLocationIcon : "https:////maps.gstatic.com/mapfiles/ms2/micons/blue-dot.png",
Placemarks : [{
name : "Rustici Software",
icon : "img/notvisited.png",
Expand Down