diff --git a/plugins/map-timestamp.user.js b/plugins/map-timestamp.user.js index 4add1b094..aa3f7058b 100644 --- a/plugins/map-timestamp.user.js +++ b/plugins/map-timestamp.user.js @@ -36,9 +36,9 @@ window.plugin.mapTimestamp.setup = function() { window.plugin.mapTimestamp.update = function() { - var html = 'Time: ' + new Date(); + var text = 'Time: ' + new Date(); - $('#timestamp').html(html); + $('#timestamp').text(text); setTimeout (window.plugin.mapTimestamp.update, 60*1000); };