Skip to content

Commit

Permalink
Merge pull request freeCodeCamp#4137 from FreeCodeCamp/fix/jobs-link
Browse files Browse the repository at this point in the history
Fix job posting link should open in new tab
  • Loading branch information
Aniruddh Agarwal committed Nov 3, 2015
2 parents d8edf40 + 610f9ab commit 13ce0cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/app/routes/Jobs/components/ShowJob.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const thumbnailStyle = {

function addATags(text) {
return text.replace(urlRegex, function(match) {
return `<a href=${match}>${match}</a>`;
return `<a href=${match} target='_blank'>${match}</a>`;
});
}

Expand Down

0 comments on commit 13ce0cc

Please sign in to comment.