IW4M-Admin/WebfrontCore/wwwroot/js/scoreboard.js

16 lines
427 B
JavaScript
Raw Normal View History

2022-01-22 13:49:12 -05: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);