mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Remove jQuery .attr from the image diff (#29917)
				
					
				
			- Switched from jQuery `.attr` to plain javascript `.setAttribute` - Tested the image diff functionality and it works as before Signed-off-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
		| @@ -70,7 +70,7 @@ export function initImageDiff() { | |||||||
|  |  | ||||||
|   $('.image-diff:not([data-image-diff-loaded])').each(async function() { |   $('.image-diff:not([data-image-diff-loaded])').each(async function() { | ||||||
|     const $container = $(this); |     const $container = $(this); | ||||||
|     $container.attr('data-image-diff-loaded', 'true'); |     this.setAttribute('data-image-diff-loaded', 'true'); | ||||||
|  |  | ||||||
|     // the container may be hidden by "viewed" checkbox, so use the parent's width for reference |     // the container may be hidden by "viewed" checkbox, so use the parent's width for reference | ||||||
|     const diffContainerWidth = Math.max($container.closest('.diff-file-box').width() - 300, 100); |     const diffContainerWidth = Math.max($container.closest('.diff-file-box').width() - 300, 100); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user