We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3e9082 commit e2b4c05Copy full SHA for e2b4c05
admin/app/helpers/solidus_admin/void_elements_helper.rb
@@ -5,9 +5,9 @@ module VoidElementsHelper
5
# https://github.com/rails/rails/blob/194d697036c61af0caa66de5659721ded2478ce9/actionview/lib/action_view/helpers/tag_helper.rb#L84
6
HTML_VOID_ELEMENTS = %i(area base br col embed hr img input keygen link meta source track wbr)
7
8
- # @param el [Symbol]
9
- def void_element?(el)
10
- HTML_VOID_ELEMENTS.include?(el)
+ # @param element [Symbol]
+ def void_element?(element)
+ HTML_VOID_ELEMENTS.include?(element)
11
end
12
13
0 commit comments