16 lines
427 B
JavaScript
Raw Normal View History

2022-01-22 12:49:12 -06:00
function refreshScoreboard() {
const serverPanel = $('.scoreboard-container.active');
const serverId = $(serverPanel).data('server-id');
$.get(`../Server/${serverId}/Scoreboard`, (response) => {
$(serverPanel).html(response);
});
}
$(document).ready(() => {
$(window.location.hash).tab('show');
$(`${window.location.hash}_nav`).addClass('active');
})
setInterval(refreshScoreboard, 5000);