mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 20:36:07 +01:00 
			
		
		
		
	- Don't rely on globals (window.$) for jQuery import - Remove eslint globals no longer in use
		
			
				
	
	
		
			13 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			348 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from 'jquery';
 | 
						|
 | 
						|
export function initSshKeyFormParser() {
 | 
						|
// Parse SSH Key
 | 
						|
  $('#ssh-key-content').on('change paste keyup', function () {
 | 
						|
    const arrays = $(this).val().split(' ');
 | 
						|
    const $title = $('#ssh-key-title');
 | 
						|
    if ($title.val() === '' && arrays.length === 3 && arrays[2] !== '') {
 | 
						|
      $title.val(arrays[2]);
 | 
						|
    }
 | 
						|
  });
 | 
						|
}
 |