1
0
mirror of https://github.com/searxng/searxng.git synced 2024-10-02 17:40:18 +02:00

[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'); $(".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 * 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'); $(".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");
});
}); });