make sure ipv4 map works over https
This commit is contained in:
parent
75fe62730c
commit
4bc846741a
2 changed files with 8 additions and 7 deletions
|
@ -78,6 +78,10 @@
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
#world > img {
|
||||||
|
width: 256px;
|
||||||
|
height: 256px;
|
||||||
|
}
|
||||||
|
|
||||||
div.marker {
|
div.marker {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
|
|
|
@ -373,12 +373,9 @@ Ox.load('UI', function() {
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
.append(
|
.append(
|
||||||
$('<img>')
|
$('<img>').attr({
|
||||||
.attr({
|
src: self.options.tilesURL + '0/0.0.0.0-255.255.255.255.png'
|
||||||
src: self.options.tilesURL
|
})
|
||||||
+ '0/0.0.0.0-255.255.255.255.png'
|
|
||||||
})
|
|
||||||
.css({width: '256px', height: '256px'})
|
|
||||||
)
|
)
|
||||||
.hide()
|
.hide()
|
||||||
.appendTo(that);
|
.appendTo(that);
|
||||||
|
@ -1020,7 +1017,7 @@ Ox.load('UI', function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
var URL = 'http://0x2620.org/html/ipv4map/',
|
var URL = 'https://0x2620.org/html/ipv4map/',
|
||||||
lookupURL = URL + 'php/ipv4map.php?callback={callback}',
|
lookupURL = URL + 'php/ipv4map.php?callback={callback}',
|
||||||
tilesURL = URL + 'png/tiles/';
|
tilesURL = URL + 'png/tiles/';
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue