mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 11:28:24 +00:00 
			
		
		
		
	Remove jQuery class from the commit button (#30178)
- Switched from jQuery class functions to plain JavaScript `classList` - Tested the commit button disabled toggling functionality and it works as before --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com> Co-authored-by: silverwind <me@silverwind.io> Co-authored-by: Giteabot <teabot@gitea.io>
This commit is contained in:
		| @@ -147,8 +147,8 @@ export function initRepoEditor() { | |||||||
|       silent: true, |       silent: true, | ||||||
|       dirtyClass: dirtyFileClass, |       dirtyClass: dirtyFileClass, | ||||||
|       fieldSelector: ':input:not(.commit-form-wrapper :input)', |       fieldSelector: ':input:not(.commit-form-wrapper :input)', | ||||||
|       change() { |       change($form) { | ||||||
|         const dirty = $(this).hasClass(dirtyFileClass); |         const dirty = $form[0]?.classList.contains(dirtyFileClass); | ||||||
|         commitButton.disabled = !dirty; |         commitButton.disabled = !dirty; | ||||||
|       }, |       }, | ||||||
|     }); |     }); | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user