forked from Archives/searxng
[fix] indicate visually active tab programmatically on the page Preferences - #350
This commit is contained in:
parent
4829a76aae
commit
3227695b0b
@ -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
|
||||
|
BIN
searx/static/themes/oscar/js/searx.min.js
vendored
BIN
searx/static/themes/oscar/js/searx.min.js
vendored
Binary file not shown.
@ -96,4 +96,9 @@ $(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");
|
||||
});
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user