mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-11-04 01:36:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			341 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
function MouseOverBigButton(source) {
 | 
						|
	if (source?.firstElementChild?.style) {
 | 
						|
		source.firstElementChild.style.visibility = "visible";
 | 
						|
	}
 | 
						|
}
 | 
						|
function MouseOutBigButton(source) {
 | 
						|
	if (source?.firstElementChild?.style) {
 | 
						|
		source.firstElementChild.style.visibility = "hidden";
 | 
						|
	}
 | 
						|
}
 | 
						|
function BigButtonAction(path) {
 | 
						|
  window.location = path;
 | 
						|
}
 |