ecp.org/app/helpers/nav_helper.rb
2022-10-18 20:11:44 -07:00

11 lines
180 B
Ruby

module NavHelper
def link_highlight(paths:)
active?(paths:) ? 'active' : ''
end
def active?(paths:)
paths.any? do |path|
current_page?(path)
end
end
end