1
0
forked from MTSR/mapserver

use m.render for world info

This commit is contained in:
NatureFreshMilk 2019-05-14 16:03:21 +02:00
parent 2bb8319673
commit c57436ddf8

View File

@ -1,5 +1,9 @@
/* exported WorldInfoDisplay */ /* exported WorldInfoDisplay */
var worldInfoRender = function(info){
return "Lag: " + parseInt(info.max_lag*10)/10 + " Time: " + parseInt(info.time)/1000;
}
// coord display // coord display
var WorldInfoDisplay = L.Control.extend({ var WorldInfoDisplay = L.Control.extend({
initialize: function(wsChannel, opts) { initialize: function(wsChannel, opts) {
@ -11,7 +15,7 @@ var WorldInfoDisplay = L.Control.extend({
var div = L.DomUtil.create('div', 'leaflet-bar leaflet-custom-display'); var div = L.DomUtil.create('div', 'leaflet-bar leaflet-custom-display');
this.wsChannel.addListener("minetest-info", function(info){ this.wsChannel.addListener("minetest-info", function(info){
div.innerHTML = "Lag: " + parseInt(info.max_lag*10)/10 + " Time: " + parseInt(info.time)/1000; m.render(div, worldInfoRender(info))
}); });
return div; return div;