0

removed strong tags in coordination box

This fixes navigation not working on iOS Safari on iPad and iPhone.
This commit is contained in:
Marc Tönsing
2019-01-10 23:22:27 +01:00
parent e1728b9e59
commit 3727f0407a

View File

@@ -58,9 +58,9 @@ overviewer.util = {
var r_z = Math.floor(Math.floor(w_coords.z / 16.0) / 32.0);
var r_name = "r." + r_x + "." + r_z + ".mca";
this.coord_box.innerHTML = "<strong>X</strong> " +
this.coord_box.innerHTML = "X " +
Math.round(w_coords.x) +
" <strong>Z</strong> " + Math.round(w_coords.z) +
" Z " + Math.round(w_coords.z) +
" (" + r_name + ")";
},
onAdd: function() {