Skip to content

Commit

Permalink
chore: Update SignItVideosGallery.js to fix link target in i18n function
Browse files Browse the repository at this point in the history
  • Loading branch information
kabir-afk committed Jun 5, 2024
1 parent c833337 commit 5a262ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion SignItVideosGallery.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ SignItVideosGallery.prototype.refresh = async function ( files ) {
var banana = {
i18n: (msg, url, speaker,index, total) => {
let string = sourceMap.get(locale)[msg];
let Speaker = `<a href=${url}>${speaker} </a>`;
let Speaker = `<a href=${url} target="_blank">${speaker} </a>`;
let patterns = ["{{link|$1|$2}}", "$3", "$4"];
let replacements = [Speaker, index, total];

Expand Down

0 comments on commit 5a262ab

Please sign in to comment.