From 099682892b6969d411296a9d8aaf027c20b5f3a3 Mon Sep 17 00:00:00 2001 From: banaanihillo Date: Mon, 8 Jul 2024 17:32:59 +0000 Subject: [PATCH] accessibility: anchor elements' missing href added (#4375) Add an empty hash `href="#"` attribute to anchors that did not yet have any `href` attribute, as a quick work-around to make those elements possible to interact with via keyboard. See discussion on linked issue (https://codeberg.org/forgejo/forgejo/issues/4273) for more information on how the button-like elements like this could eventually be improved even more. Fixes https://codeberg.org/forgejo/forgejo/issues/4273. Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4375 Reviewed-by: Gusted Co-authored-by: banaanihillo Co-committed-by: banaanihillo --- options/locale/locale_en-US.ini | 2 +- .../repo/issue/view_content/pull_merge_instruction.tmpl | 6 +++--- templates/repo/view_file.tmpl | 2 +- web_src/js/features/repo-issue.js | 6 ------ web_src/js/index.js | 2 -- 5 files changed, 5 insertions(+), 13 deletions(-) diff --git a/options/locale/locale_en-US.ini b/options/locale/locale_en-US.ini index bac0e8515a..1d8da735cf 100644 --- a/options/locale/locale_en-US.ini +++ b/options/locale/locale_en-US.ini @@ -1936,7 +1936,7 @@ pulls.close = Close pull request pulls.closed_at = `closed this pull request %[2]s` pulls.reopened_at = `reopened this pull request %[2]s` pulls.commit_ref_at = `referenced this pull request from a commit %[2]s` -pulls.cmd_instruction_hint = `View command line instructions.` +pulls.cmd_instruction_hint = `View command line instructions.` pulls.cmd_instruction_checkout_title = Checkout pulls.cmd_instruction_checkout_desc = From your project repository, check out a new branch and test the changes. pulls.cmd_instruction_merge_title = Merge diff --git a/templates/repo/issue/view_content/pull_merge_instruction.tmpl b/templates/repo/issue/view_content/pull_merge_instruction.tmpl index d585d36574..42d9c82935 100644 --- a/templates/repo/issue/view_content/pull_merge_instruction.tmpl +++ b/templates/repo/issue/view_content/pull_merge_instruction.tmpl @@ -1,6 +1,6 @@
-
{{ctx.Locale.Tr "repo.pulls.cmd_instruction_hint"}}
-
+
+ {{ctx.Locale.Tr "repo.pulls.cmd_instruction_hint"}}

{{ctx.Locale.Tr "repo.pulls.cmd_instruction_checkout_title"}}

{{ctx.Locale.Tr "repo.pulls.cmd_instruction_checkout_desc"}}
{{$localBranch := .PullRequest.HeadBranch}} {{if ne .PullRequest.HeadRepo.ID .PullRequest.BaseRepo.ID}} @@ -46,4 +46,4 @@
git push origin {{.PullRequest.BaseBranch}}
{{end}} - + diff --git a/templates/repo/view_file.tmpl b/templates/repo/view_file.tmpl index dfbc45dd61..d127c2ef24 100644 --- a/templates/repo/view_file.tmpl +++ b/templates/repo/view_file.tmpl @@ -60,7 +60,7 @@ {{end}} {{svg "octicon-download"}} - {{svg "octicon-copy" 14}} + {{svg "octicon-copy" 14}} {{if .EnableFeed}} {{if .IsViewBranch}} diff --git a/web_src/js/features/repo-issue.js b/web_src/js/features/repo-issue.js index c2867f6f9e..ff8faa94f6 100644 --- a/web_src/js/features/repo-issue.js +++ b/web_src/js/features/repo-issue.js @@ -290,12 +290,6 @@ export function initRepoPullRequestUpdate() { }); } -export function initRepoPullRequestMergeInstruction() { - $('.show-instruction').on('click', () => { - toggleElem($('.instruct-content')); - }); -} - export function initRepoPullRequestAllowMaintainerEdit() { const wrapper = document.getElementById('allow-edits-from-maintainers'); if (!wrapper) return; diff --git a/web_src/js/index.js b/web_src/js/index.js index fc2f6b9b0b..51ff56fdce 100644 --- a/web_src/js/index.js +++ b/web_src/js/index.js @@ -30,7 +30,6 @@ import { initRepoIssueReferenceRepositorySearch, initRepoIssueTimeTracking, initRepoIssueWipTitle, - initRepoPullRequestMergeInstruction, initRepoPullRequestAllowMaintainerEdit, initRepoPullRequestReview, initRepoIssueSidebarList, initArchivedLabelHandler, } from './features/repo-issue.js'; @@ -161,7 +160,6 @@ onDomReady(() => { initRepoMigration(); initRepoMigrationStatusChecker(); initRepoProject(); - initRepoPullRequestMergeInstruction(); initRepoPullRequestAllowMaintainerEdit(); initRepoPullRequestReview(); initRepoRelease();