This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.

19 lines
572 B
JavaScript

$(document).ready(function() {
new SYSTEM('./api.php',1,'start');
$('.navbar-collapse a').click(function(){
$(".navbar-collapse").collapse('hide');
});
});
function switchTextBg(color){
var div = document.getElementById("text");
div.style.backgroundColor = color;
var div2 = document.getElementById("site-content-wrapper");
div2.style.backgroundColor = color;
if (color == "black") div.style.color = "white";
if (color == "white") div.style.color = "black";
}