Skip to content

Commit

Permalink
Preserve protocol in short links
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Feb 18, 2017
1 parent 9fb382e commit 77fee91
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion app/assets/javascripts/leaflet.map.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ L.OSM.Map = L.Map.extend({
var zoom = this.getZoom(),
latLng = marker && this.hasLayer(marker) ? marker.getLatLng().wrap() : this.getCenter().wrap(),
str = window.location.hostname.match(/^www\.openstreetmap\.org/i) ?
'http://osm.org/go/' : 'http://' + window.location.hostname + '/go/',
window.location.protocol + '://osm.org/go/' :
window.location.protocol + '://' + window.location.hostname + '/go/',
char_array = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789_~",
x = Math.round((latLng.lng + 180.0) * ((1 << 30) / 90.0)),
y = Math.round((latLng.lat + 90.0) * ((1 << 30) / 45.0)),
Expand Down

0 comments on commit 77fee91

Please sign in to comment.