Module: Sidebars::Concerns::LinkWithHtmlOptions

Included in:
ContainerWithHtmlOptions, MenuItem
Defined in:
lib/sidebars/concerns/link_with_html_options.rb

Instance Method Summary collapse

Instance Method Details

add on specific items as the pertain to ‘link_to` objects specifically



7
8
9
10
11
# File 'lib/sidebars/concerns/link_with_html_options.rb', line 7

def link_html_options
  container_html_options.tap do |html_options|
    html_options[:class] = [*html_options[:class], 'gl-link'].join(' ')
  end
end