8000 gh-125933: Add ARIA labels to select elements in the version switcher by Privat33r-dev · Pull Request #125934 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-125933: Add ARIA labels to select elements in the version switcher #125934

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Oct 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
make version lowercase
Co-authored-by: Hugo van Kemenade <1324225+hugovk@users.noreply.github.com>
  • Loading branch information
Privat33r-dev and hugovk authored Oct 24, 2024
commit 39b600fbc53d757a70ca02fcc223bb1f1d375c89
2 changes: 1 addition & 1 deletion Doc/tools/static/rtd_switcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
document.addEventListener("readthedocs-addons-data-ready", function(event) {
const config = event.detail.data()
const versionSelect = `
<select id="version_select" aria-label="Python Version">
<select id="version_select" aria-label="Python version">
${ config.versions.active.map(
(version) => `
<option
Expand Down
Loading
0