Skip to content

Commit

Permalink
Some URLs were not starting with http:
Browse files Browse the repository at this point in the history
  • Loading branch information
lolive committed May 23, 2013
1 parent 75678ea commit b1d5e54
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Expand Up @@ -30,10 +30,10 @@
</div>
</div>
</div>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="//maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?sensor=true"></script>
<script type="text/javascript" src="js/ProjectedOverlay.js"></script>
<script type="text/javascript" src="js/geoxml3.js"></script>
<script type="text/javascript" src="js/map.js"></script>
</body>
</html>
</html>

1 comment on commit b1d5e54

@lightningwhelk
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Although it looks wrong, most browsers (including very old versions of Internet Explorer) do actually support leaving off the protocol, hence the URLs starting with // instead of the more commonly expected http://. I merged your change into my repository to help, but please check out this Stack Overflow discussion on leaving off the protocol: http://stackoverflow.com/questions/4831741/can-i-change-all-my-http-links-to-just

Please sign in to comment.