mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[mod] infinite scroll: XHR requests are sent with the header "Accept: text/html".
Fix https://github.com/searx/searx-docker/issues/16
This commit is contained in:
		
							parent
							
								
									50e1fcaa5e
								
							
						
					
					
						commit
						0e7b6c9a03
					
				
					 1 changed files with 12 additions and 6 deletions
				
			
		|  | @ -5,12 +5,18 @@ $(document).ready(function() { | |||
|             var formData = $('#pagination form:last').serialize(); | ||||
|             if (formData) { | ||||
|                 $('#pagination').html('<div class="loading-spinner"></div>'); | ||||
|                 $.post('./', formData, function (data) { | ||||
|                     var body = $(data); | ||||
|                     $('#pagination').remove(); | ||||
|                     $('#main_results').append('<hr/>'); | ||||
|                     $('#main_results').append(body.find('.result')); | ||||
|                     $('#main_results').append(body.find('#pagination')); | ||||
|                 $.ajax({ | ||||
|                     type: "POST", | ||||
|                     url: './', | ||||
|                     data: formData, | ||||
|                     dataType: 'html', | ||||
|                     success: function(data) { | ||||
|                         var body = $(data); | ||||
|                         $('#pagination').remove(); | ||||
|                         $('#main_results').append('<hr/>'); | ||||
|                         $('#main_results').append(body.find('.result')); | ||||
|                         $('#main_results').append(body.find('#pagination')); | ||||
|                     } | ||||
|                 }); | ||||
|             } | ||||
|         } | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Dalf
						Dalf