Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
22c88c67
Commit
22c88c67
authored
Apr 24, 2017
by
Jacob Schatz
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-aria-to-icon' into 'master'
Add aria to icon See merge request !10670
parents
375746d6
f0a164a6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
24 additions
and
0 deletions
+24
-0
app/helpers/icons_helper.rb
app/helpers/icons_helper.rb
+5
-0
changelogs/unreleased/add-aria-to-icon.yml
changelogs/unreleased/add-aria-to-icon.yml
+4
-0
spec/helpers/icons_helper_spec.rb
spec/helpers/icons_helper_spec.rb
+15
-0
No files found.
app/helpers/icons_helper.rb
View file @
22c88c67
...
...
@@ -7,6 +7,11 @@ module IconsHelper
# font-awesome-rails gem, but should we ever use a different icon pack in the
# future we won't have to change hundreds of method calls.
def
icon
(
names
,
options
=
{})
if
(
options
.
keys
&
%w[aria-hidden aria-label]
).
empty?
# Add `aria-hidden` if there are no aria's set
options
[
'aria-hidden'
]
=
true
end
options
.
include?
(
:base
)
?
fa_stacked_icon
(
names
,
options
)
:
fa_icon
(
names
,
options
)
end
...
...
changelogs/unreleased/add-aria-to-icon.yml
0 → 100644
View file @
22c88c67
---
title
:
Fixes an issue preventing screen readers from reading some icons
merge_request
:
author
:
spec/helpers/icons_helper_spec.rb
View file @
22c88c67
require
'spec_helper'
describe
IconsHelper
do
describe
'icon'
do
it
'returns aria-hidden by default'
do
star
=
icon
(
'star'
)
expect
(
star
[
'aria-hidden'
]).
to
eq
'aria-hidden'
end
it
'does not return aria-hidden if aria-label is set'
do
up
=
icon
(
'up'
,
'aria-label'
=>
'up'
)
expect
(
up
[
'aria-hidden'
]).
to
be_nil
expect
(
up
[
'aria-label'
]).
to
eq
'aria-label'
end
end
describe
'file_type_icon_class'
do
it
'returns folder class'
do
expect
(
file_type_icon_class
(
'folder'
,
0
,
'folder_name'
)).
to
eq
'folder'
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment