mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-11-04 01:34:27 +00:00 
			
		
		
		
	- Don't rely on globals (window.$) for jQuery import - Remove eslint globals no longer in use
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import $ from 'jquery';
 | 
						|
 | 
						|
export function initUnicodeEscapeButton() {
 | 
						|
  $(document).on('click', 'a.escape-button', (e) => {
 | 
						|
    e.preventDefault();
 | 
						|
    $(e.target).parents('.file-content, .non-diff-file-content').find('.file-code, .file-view').addClass('unicode-escaped');
 | 
						|
    $(e.target).hide();
 | 
						|
    $(e.target).siblings('a.unescape-button').show();
 | 
						|
  });
 | 
						|
  $(document).on('click', 'a.unescape-button', (e) => {
 | 
						|
    e.preventDefault();
 | 
						|
    $(e.target).parents('.file-content, .non-diff-file-content').find('.file-code, .file-view').removeClass('unicode-escaped');
 | 
						|
    $(e.target).hide();
 | 
						|
    $(e.target).siblings('a.escape-button').show();
 | 
						|
  });
 | 
						|
  $(document).on('click', 'a.toggle-escape-button', (e) => {
 | 
						|
    e.preventDefault();
 | 
						|
    const fileContent = $(e.target).parents('.file-content, .non-diff-file-content');
 | 
						|
    const fileView = fileContent.find('.file-code, .file-view');
 | 
						|
    if (fileView.hasClass('unicode-escaped')) {
 | 
						|
      fileView.removeClass('unicode-escaped');
 | 
						|
      fileContent.find('a.unescape-button').hide();
 | 
						|
      fileContent.find('a.escape-button').show();
 | 
						|
    } else {
 | 
						|
      fileView.addClass('unicode-escaped');
 | 
						|
      fileContent.find('a.unescape-button').show();
 | 
						|
      fileContent.find('a.escape-button').hide();
 | 
						|
    }
 | 
						|
  });
 | 
						|
}
 |