Skip to content
This repository has been archived by the owner. It is now read-only.

Commit

Permalink
Browse files Browse the repository at this point in the history
Josh fix for People page
  • Loading branch information
briandunnigan authored and briandunnigan committed Mar 25, 2016
1 parent 4d8463b commit 3a62aa7
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 2 deletions.
9 changes: 8 additions & 1 deletion js/custom.js
Expand Up @@ -175,7 +175,14 @@ jQuery(document).ready(function($) {
});
}

$(".fsd-dropdown").on('click', "li", function(event){
$(".fsd-dropdown li").on('click', "a", function(event){
event.preventDefault();
var thisHref= $(this).attr('href').split("#");
if( thisHref.length > 1 ){
window.location.hash = thisHref[1];
} else {
window.location.hash = "";
}
window.location.reload(true);
});

Expand Down
2 changes: 1 addition & 1 deletion js/min/custom.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3a62aa7

Please sign in to comment.