Skip to content

Commit

Permalink
fix: cornerExternalLinkTarget config. (#1814)
Browse files Browse the repository at this point in the history
  • Loading branch information
Koooooo-7 committed Jun 4, 2022
1 parent fa14210 commit 54cc5f9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/core/render/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -413,7 +413,7 @@ export function Render(Base) {

if (el) {
if (config.repo) {
html += tpl.corner(config.repo, config.cornerExternalLinkTarge);
html += tpl.corner(config.repo, config.cornerExternalLinkTarget);
}

if (config.coverpage) {
Expand Down
8 changes: 4 additions & 4 deletions src/core/render/tpl.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/**
* Render github corner
* @param {Object} data URL for the View Source on Github link
* @param {String} cornerExternalLinkTarge value of the target attribute of the link
* @param {String} cornerExternalLinkTarget value of the target attribute of the link
* @return {String} SVG element as string
*/
export function corner(data, cornerExternalLinkTarge) {
export function corner(data, cornerExternalLinkTarget) {
if (!data) {
return '';
}
Expand All @@ -15,10 +15,10 @@ export function corner(data, cornerExternalLinkTarge) {

data = data.replace(/^git\+/, '');
// Double check
cornerExternalLinkTarge = cornerExternalLinkTarge || '_blank';
cornerExternalLinkTarget = cornerExternalLinkTarget || '_blank';

return (
`<a href="${data}" target="${cornerExternalLinkTarge}" class="github-corner" aria-label="View source on Github">` +
`<a href="${data}" target="${cornerExternalLinkTarget}" class="github-corner" aria-label="View source on Github">` +
'<svg viewBox="0 0 250 250" aria-hidden="true">' +
'<path d="M0,0 L115,115 L130,115 L142,142 L250,250 L250,0 Z"></path>' +
'<path d="M128.3,109.0 C113.8,99.7 119.0,89.6 119.0,89.6 C122.0,82.7 120.5,78.6 120.5,78.6 C119.2,72.0 123.4,76.3 123.4,76.3 C127.3,80.9 125.5,87.3 125.5,87.3 C122.9,97.6 130.6,101.9 134.4,103.2" fill="currentColor" style="transform-origin: 130px 106px;" class="octo-arm"></path>' +
Expand Down

1 comment on commit 54cc5f9

@vercel
Copy link

@vercel vercel bot commented on 54cc5f9 Jun 4, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.