mirror of
				https://github.com/go-gitea/gitea.git
				synced 2025-10-30 14:04:03 +01:00 
			
		
		
		
	location.reload was being called when the related dropdown was hidden, even if a request initiated before to update this value hadn't finished. This caused troubles on Firefox.
This commit is contained in:
		
							parent
							
								
									6b13dafe61
								
							
						
					
					
						commit
						858197b453
					
				| @ -189,12 +189,6 @@ function initCommentForm() { | ||||
|         var $list = $('.ui' + select_id + '.list'); | ||||
|         var hasUpdateAction = $menu.data('action') == 'update'; | ||||
| 
 | ||||
|         $(select_id).dropdown('setting', 'onHide', function(){ | ||||
|             if (hasUpdateAction) { | ||||
|                 location.reload(); | ||||
|             } | ||||
|         }); | ||||
| 
 | ||||
|         $menu.find('.item:not(.no-select)').click(function () { | ||||
|             $(this).parent().find('.item').each(function () { | ||||
|                 $(this).removeClass('selected active') | ||||
| @ -206,7 +200,8 @@ function initCommentForm() { | ||||
|                     $menu.data('update-url'), | ||||
|                     "", | ||||
|                     $menu.data('issue-id'), | ||||
|                     $(this).data('id') | ||||
|                     $(this).data('id'), | ||||
|                     function() { location.reload(); } | ||||
|                 ); | ||||
|             } | ||||
|             switch (input_id) { | ||||
| @ -232,7 +227,8 @@ function initCommentForm() { | ||||
|                     $menu.data('update-url'), | ||||
|                     "", | ||||
|                     $menu.data('issue-id'), | ||||
|                     $(this).data('id') | ||||
|                     $(this).data('id'), | ||||
|                     function() { location.reload(); } | ||||
|                 ); | ||||
|             } | ||||
| 
 | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user