diff --git a/src/widjets-display-user-tzcld.js b/src/widjets-display-user-tzcld.js index e9bc81cb60ac087bdb8feb8ac277dbd8c0ecf2dd..620c2b6005e95520c1b904a742ac3307521f8338 100644 --- a/src/widjets-display-user-tzcld.js +++ b/src/widjets-display-user-tzcld.js @@ -130,7 +130,7 @@ import("./utils.js").then((utils) => { for(let job of tzcldprofile.jobs) { if(await job.organisation !="") { if(await job.link !="") { - render += `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} Ã <a class="link text-top" href="${await job.link}">${await job.organisation}</a></h3>`; + render += `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} Ã <a class="link text-top" target="_blank" href="${await job.link}">${await job.organisation}</a></h3>`; } else { render += `<h3 class="position text-medium padding-bottom-large whitespace-normal">${await job.position} Ã ${await job.organisation}</h3>`; } @@ -196,7 +196,7 @@ import("./utils.js").then((utils) => { for(let job of tzcldprofile.jobs) { if(await job.organisation !="") { if(await job.link !="") { - render += `<h4 class="position text-medium padding-bottom-large">${await job.position} Ã <a class="link text-top" href="${await job.link}">${await job.organisation}</a></h4>`; + render += `<h4 class="position text-medium padding-bottom-large">${await job.position} Ã <a class="link text-top" target="_blank" href="${await job.link}">${await job.organisation}</a></h4>`; } else { render += `<h4 class="position text-medium padding-bottom-large">${await job.position} Ã ${await job.organisation}</h4>`; }