mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-03 08:02:36 +09:00 
			
		
		
		
	- Switched to plain JavaScript - Tested the user rename prompt toggling functionality and it works as before - Fixed bug that allowed pasting with the mouse to avoid the prompt # Before  # After  --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: silverwind <me@silverwind.io>
		
			
				
	
	
		
			20 lines
		
	
	
		
			691 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			691 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import {hideElem, showElem} from '../utils/dom.js';
 | 
						|
 | 
						|
export function initUserSettings() {
 | 
						|
  if (document.querySelectorAll('.user.settings.profile').length === 0) return;
 | 
						|
 | 
						|
  const usernameInput = document.getElementById('username');
 | 
						|
  if (!usernameInput) return;
 | 
						|
  usernameInput.addEventListener('input', function () {
 | 
						|
    const prompt = document.getElementById('name-change-prompt');
 | 
						|
    const promptRedirect = document.getElementById('name-change-redirect-prompt');
 | 
						|
    if (this.value.toLowerCase() !== this.getAttribute('data-name').toLowerCase()) {
 | 
						|
      showElem(prompt);
 | 
						|
      showElem(promptRedirect);
 | 
						|
    } else {
 | 
						|
      hideElem(prompt);
 | 
						|
      hideElem(promptRedirect);
 | 
						|
    }
 | 
						|
  });
 | 
						|
}
 |