Skip to content
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

SAK-49779 site-manage gateway select term does not have an accessible name #12939

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
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
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@

##<!-- $Header: /cvs/sakai2/legacy/tools/src/webapp/vm/sitebrowser/chef_sitebrowser_simpleSearch.vm,v 1.2 2005/05/19 19:53:16 gsilver.umich.edu Exp $ -->
<script type="text/javascript" language="JavaScript">
$(document).ready(function(){
Expand Down Expand Up @@ -32,7 +33,7 @@
<div class="radio indnt3">
<input type="radio" name="siteType" class="siteTypeTerm" id="siteType$siteTypeCount" value="$type" />
<label for="siteType$siteTypeCount">$type $tlang.getString("se.sites")</label>

<label for="selectTerm">Select a Term:</label>
Copy link
Contributor

@ern ern Oct 1, 2024

Choose a reason for hiding this comment

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

should this be a translated string?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I realized that the string "Select a Term:" is not needed as there is text already present on the element and JAWS is repeating the instructions for that element. I will update it such that no text is there within the label tag to avoid redundancy.

<select name="selectTerm" id="selectTerm" disabled>
<option value="Any" selected>$tlang.getString("se.any.term")</option>

Expand Down
Loading