mirror of
				https://github.com/KevinMidboe/zoff.git
				synced 2025-10-29 18:00:23 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			940 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			940 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
var adminTogg;
 | 
						|
 | 
						|
function admin()
 | 
						|
{
 | 
						|
	adminTogg = !adminTogg;
 | 
						|
	if(!adminTogg) $("#playlist").height($("#playlist").height()+$("#adminPanel").outerHeight(true));
 | 
						|
	$("#adminPanel").toggleClass("hiddenAdmin");
 | 
						|
	if(adminTogg) $("#playlist").height($("#playlist").height()-$("#adminPanel").outerHeight(true));
 | 
						|
}
 | 
						|
 | 
						|
 | 
						|
function submitAdmin(form)
 | 
						|
{
 | 
						|
	vote = form.vote.checked,
 | 
						|
	addSongs = form.addSongs.checked,
 | 
						|
	longSongs = form.longSongs.checked,
 | 
						|
	frontpage = form.frontPage.checked,
 | 
						|
	onlyMusic = form.onlyMusic.checked,
 | 
						|
	removePlay = form.removePlay.checked,
 | 
						|
	pass = form.pass.value;
 | 
						|
 | 
						|
	conf = $.ajax({
 | 
						|
		type: "POST",
 | 
						|
		url: "php/change.php",
 | 
						|
		async: false,
 | 
						|
		data: "conf=start&vote="+vote+"&addsongs="+addSongs+"&longsongs="+longSongs+"&frontpage="+frontpage+"&onlymusic="+onlyMusic+"&removeplay="+removePlay+"&pass="+pass,
 | 
						|
 | 
						|
		success: function() {
 | 
						|
			console.log("configurations response: "+response);
 | 
						|
		}
 | 
						|
	}).responseText;
 | 
						|
	
 | 
						|
	console.log(conf);
 | 
						|
}
 |