Includes aria hidden attribute on support buttons

This commit is contained in:
Alberto Garcia Cabeza
2016-05-04 15:21:20 +02:00
parent ddd061a17f
commit d46a2f9335
4 changed files with 16 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
module AccessibilityHelper
def css_for_aria_hidden(reason)
reason.present? ? "true" : ""
end
end