Skip to content

Commit

Permalink
Merge pull request #3921 from milospp/fix/capability-map-info
Browse files Browse the repository at this point in the history
Fixed jquery selector for capability map tabs
  • Loading branch information
chenejac authored Dec 1, 2023
2 parents 881e454 + c93d2a9 commit 3fb8b6d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ FullResultQueryUnit.prototype.fetch = function() {

var showPanel = function(name) {
$(".titles li").removeClass("activeTab");
$(".titles li a[href=#" + name + "]").parent().addClass("activeTab");
$(".titles li a[href='#" + name + "']").parent().addClass("activeTab");
$(".result_section").css("display", "none");
$("#" + name).css("display", "block");
}
Expand Down

0 comments on commit 3fb8b6d

Please sign in to comment.