Skip to content

Commit

Permalink
Consistent column case (fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomcis committed Jul 8, 2020
1 parent 36cf573 commit 0a883c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion popmon/visualization/templates/assets/js/custom-script.js
Expand Up @@ -7,7 +7,7 @@ $(document).on("click", "button.dropdown-item", function() {
obj = $(this)
obj.closest("section").find("div.section_feature").hide()
obj.closest("section").find("div[data-section-feature='" + obj.attr("data-feature") + "']").show()
obj.parent().siblings("button").text("Feature: " + obj.text()())
obj.parent().siblings("button").text("Feature: " + obj.text())
});
// making navigation work: after clicking a nav link scrolling to the corresponding section's position
$(document).on("click", "a.nav-link", function(e) {
Expand Down

0 comments on commit 0a883c2

Please sign in to comment.