gluon-packages/gluon/gluon-status-page/files/lib/gluon/status-page/www/status.js

10 lines
187 B
JavaScript

function update_node(id, ip, hostname) {
var el = document.getElementById(id);
if (!el)
return;
el.href = "http://[" + ip + "]/";
el.textContent += " (" + hostname + ")";
}