[fix] indicate visually active tab programmatically on the page Preferences - #350

This commit is contained in:
Adam Tauber 2020-07-06 13:07:45 +02:00
parent 4829a76aae
commit 3227695b0b
3 changed files with 12 additions and 2 deletions

View File

@ -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

File diff suppressed because one or more lines are too long

View File

@ -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");
});
});