Skip to content
This repository has been archived by the owner on May 20, 2019. It is now read-only.

Commit

Permalink
Removing tab target in profile page links
Browse files Browse the repository at this point in the history
  • Loading branch information
ankoh committed Oct 21, 2015
1 parent ff81376 commit dfddebe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/dist/embed.js
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ function queryDocuments() {
docs += ', ';
}
if(name in profilePages) {
docs += '<a target="_blank" href="' + profilePages[name] + '">' + name + '</a>';
docs += '<a href="' + profilePages[name] + '">' + name + '</a>';
} else {
docs += name;
}
Expand Down

0 comments on commit dfddebe

Please sign in to comment.