mirror of
				https://github.com/NohamR/KartablePro.git
				synced 2025-10-31 21:59:30 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			484 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			484 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // popup.js
 | |
| 
 | |
| document.addEventListener('DOMContentLoaded', function () {
 | |
|     var redirectButton1 = document.getElementById('redirectButton1');
 | |
|     redirectButton1.addEventListener('click', function () {
 | |
|       window.open('https://nohamr.github.io', '_blank');
 | |
|     });
 | |
|     var redirectButton2 = document.getElementById('redirectButton2');
 | |
|     redirectButton2.addEventListener('click', function () {
 | |
|       window.open('https://github.com/NohamR/KartablePro', '_blank');
 | |
|     });
 | |
|   });
 | |
|   
 | 
