Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Hide the "a public entry" from screen readers
Seems redundant because the label is still visible to them.
  • Loading branch information
afuna committed Sep 12, 2014
1 parent 80b3b74 commit 772f10b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/js/components/jquery.fancy-select.js
Expand Up @@ -53,7 +53,7 @@ $.fn.extend({
var $select = $(this);
$select
.wrap("<div class='fancy-select-select'/>")
.after("<span class='fancy-select-output split button secondary'><output></output><span class='fancy-select-arrow'></span></span>")
.after("<span class='fancy-select-output split button secondary' aria-hidden='true'><output></output><span class='fancy-select-arrow'></span></span>")
.focus(function() {
$(this).next(".fancy-select-output").addClass("focus");
})
Expand Down

0 comments on commit 772f10b

Please sign in to comment.