mirror of
https://github.com/searxng/searxng.git
synced 2025-08-02 10:02:20 +02:00
[fix] indicate visually active tab programmatically on the page Preferences - #350
This commit is contained in:
parent
4829a76aae
commit
3227695b0b
3 changed files with 12 additions and 2 deletions
|
@ -198,6 +198,11 @@ $(document).ready(function(){
|
|||
$(".btn-sm").addClass('btn-default');
|
||||
}
|
||||
});
|
||||
$(".nav-tabs").click(function(a) {
|
||||
var tabs = $(a.target).parents("ul");
|
||||
tabs.children().attr("aria-selected", "false");
|
||||
$(a.target).parent().attr("aria-selected", "true");
|
||||
});
|
||||
});
|
||||
;/**
|
||||
* searx is free software: you can redistribute it and/or modify
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue