mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Fix wrong selector for AJAX issue creation.
This commit is contained in:
		@@ -638,7 +638,7 @@ function initIssue() {
 | 
			
		||||
        
 | 
			
		||||
        var clickedButton;
 | 
			
		||||
        
 | 
			
		||||
        $('#issue-reply-btn,input[type="submit"]', fileInput.form).on('click', function() {
 | 
			
		||||
        $('input[type="submit"],input[type="button"],button.btn-success', fileInput.form).on('click', function() {
 | 
			
		||||
            clickedButton = this;
 | 
			
		||||
 | 
			
		||||
            var $button = $(this);
 | 
			
		||||
@@ -646,7 +646,7 @@ function initIssue() {
 | 
			
		||||
            $button.removeClass("btn-success btn-default");
 | 
			
		||||
            $button.addClass("btn-warning");
 | 
			
		||||
 | 
			
		||||
            $button.text("Submitting…");
 | 
			
		||||
            $button.html("Submitting…");
 | 
			
		||||
        });
 | 
			
		||||
 | 
			
		||||
        fileInput.form.addEventListener("submit", function(event) {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user