mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 01:04:25 +01:00 
			
		
		
		
	- Switched to plain JavaScript - Tested the SSH key title functionality and it works as before # Demo using JavaScript without jQuery  --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			11 lines
		
	
	
		
			360 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			360 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| export function initSshKeyFormParser() {
 | |
|   // Parse SSH Key
 | |
|   document.getElementById('ssh-key-content')?.addEventListener('input', function () {
 | |
|     const arrays = this.value.split(' ');
 | |
|     const title = document.getElementById('ssh-key-title');
 | |
|     if (!title.value && arrays.length === 3 && arrays[2] !== '') {
 | |
|       title.value = arrays[2];
 | |
|     }
 | |
|   });
 | |
| }
 |