mirror of
				https://github.com/slawkens/myaac.git
				synced 2025-10-31 07:56: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;
 | |
| }
 | 
