mirror of
				https://codeberg.org/forgejo/forgejo.git
				synced 2025-11-04 08:21:11 +00:00 
			
		
		
		
	Fix: [#25055](https://github.com/go-gitea/gitea/issues/25055) Before  After  ps: I've noticed that we are gradually replacing jQuery, so I didn't use jQuery here. (cherry picked from commit 1261dd6742fb7095e51c173ca4641477d81a3634)
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			287 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
export function initAutoFocusEnd() {
 | 
						|
  for (const el of document.querySelectorAll('.js-autofocus-end')) {
 | 
						|
    el.focus(); // expects only one such element on one page. If there are many, then the last one gets the focus.
 | 
						|
    el.setSelectionRange(el.value.length, el.value.length);
 | 
						|
  }
 | 
						|
}
 |