diff options
author | silverwind <me@silverwind.io> | 2020-09-11 22:19:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-11 16:19:00 -0400 |
commit | ffddf3f8a6ca5e3db46e5731d717a55eb58e858f (patch) | |
tree | de8b73f1346e81d2bb9acf042bd33eafd0df26c1 /web_src | |
parent | 26c4a049da178993e5ccddcb50e7edc70a6bde5d (diff) | |
download | gitea-ffddf3f8a6ca5e3db46e5731d717a55eb58e858f.tar.gz gitea-ffddf3f8a6ca5e3db46e5731d717a55eb58e858f.zip |
Make SVG size argument optional (#12814)
Now defaults to 16 on both frontend and backend.
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
Diffstat (limited to 'web_src')
-rw-r--r-- | web_src/js/features/contextpopup.js | 2 | ||||
-rw-r--r-- | web_src/js/markdown/anchors.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/web_src/js/features/contextpopup.js b/web_src/js/features/contextpopup.js index 2597c18014..a9a0ceee3b 100644 --- a/web_src/js/features/contextpopup.js +++ b/web_src/js/features/contextpopup.js @@ -65,7 +65,7 @@ function issuePopup(owner, repo, index, $element) { html: ` <div> <p><small>${issue.repository.full_name} on ${createdAt}</small></p> - <p><span class="${color}">${svg(octicon, 16)}</span> <strong>${issue.title}</strong> #${index}</p> + <p><span class="${color}">${svg(octicon)}</span> <strong>${issue.title}</strong> #${index}</p> <p>${body}</p> ${labels} </div> diff --git a/web_src/js/markdown/anchors.js b/web_src/js/markdown/anchors.js index 73c38eef32..b7d0a1f608 100644 --- a/web_src/js/markdown/anchors.js +++ b/web_src/js/markdown/anchors.js @@ -23,7 +23,7 @@ export default function initMarkdownAnchors() { const a = document.createElement('a'); a.classList.add('anchor'); a.setAttribute('href', `#${encodeURIComponent(originalId)}`); - a.innerHTML = svg('octicon-link', 16); + a.innerHTML = svg('octicon-link'); heading.prepend(a); } |