Issue #390:https protocol for perma link and zoom

This commit is contained in:
Jon
2013-03-06 17:56:43 -08:00
parent ad57f52415
commit 4e9a1682cb
2 changed files with 3 additions and 3 deletions

View File

@ -244,7 +244,7 @@ window.setPermaLink = function(elm) {
var lat = Math.round(c.lat*1E6);
var lng = Math.round(c.lng*1E6);
var qry = 'latE6='+lat+'&lngE6='+lng+'&z=' + (map.getZoom()-1);
$(elm).attr('href', 'http://www.ingress.com/intel?' + qry);
$(elm).attr('href', 'https://www.ingress.com/intel?' + qry);
}
window.uniqueArray = function(arr) {