$(document).ready(function() { $('link[href="modules/TS3Admin/webinterface.css"]').remove(); $('#loadingImage').remove(); $('.main a[href$="changevServer"]').prepend('').addClass('btn-secondary mb-2 '); $('.main > form > br').remove(); $('.main span').each(function() { if($(this).attr('style')) { $(this).removeAttr('style'); } }); $('.main [name="startvServer"]').addClass('btn-success'); $('.main [name="stopvServer"]').addClass('btn-danger'); $('.main #clearLink').parent('div').addClass('text-muted mb-1'); $('.main > .infoBox').wrapAll('
'); $('.main > .row > .infoBox').each(function() { $(this).wrapAll('
'); }); $('.edit').each(function() { var imgURL = $(this).find('img').attr('src'); $(this).addClass('btn btn-sm btn-primary').find('img').remove(); if (imgURL.toLowerCase().indexOf("edit.png") >= 0) { $(this).addClass('btn-secondary').html(''); } else if (imgURL.toLowerCase().indexOf("refresh.png") >= 0) { $(this).html(''); } }); $('#serverstatus.online').addClass('badge bg-success'); $('#serverstatus.offline').addClass('badge bg-danger'); $('#jsMsg + div a').each(function() { }); });