mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	[fix] simple template: add ID to elements used for aria-labelledby
The ``aria-labelledby`` [1] attribute identifies the element that labels the element it is applied to. The templates ``infinite_scroll.html`` and ``search_on_category_select.html`` define a ``aria-labelledby`` at the <input> tag but miss the id in the <div> with the description. [1] https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-labelledby Signed-off-by: Markus <markus@venom.fritz.box>
This commit is contained in:
		
							parent
							
								
									67fcf3cc67
								
							
						
					
					
						commit
						8b8d830fd3
					
				
					 2 changed files with 2 additions and 2 deletions
				
			
		|  | @ -10,7 +10,7 @@ | |||
|            {%- endif -%}{{- ' ' -}} | ||||
|            >{{- '' -}} | ||||
|   </p>{{- '' -}} | ||||
|   <div class="description"> | ||||
|   <div class="description" id="pref_infinite_scroll"> | ||||
|     {{- _('Automatically load next page when scrolling to bottom of current page') -}} | ||||
|   </div>{{- '' -}} | ||||
| </fieldset>{{- '' -}} | ||||
|  |  | |||
|  | @ -10,7 +10,7 @@ | |||
|            {%- endif -%}{{- ' ' -}} | ||||
|            >{{- '' -}} | ||||
|   </p>{{- '' -}} | ||||
|   <div class="description"> | ||||
|   <div class="description" id="pref_search_on_category_select"> | ||||
|     {{- _('Perform search immediately if a category selected. Disable to select multiple categories') -}} | ||||
|   </div>{{- '' -}} | ||||
| </fieldset>{{- '' -}} | ||||
		Loading…
	
	Add table
		
		Reference in a new issue
	
	 Markus
						Markus