ecp.org/app/helpers/nav_helper.rb

9 lines
142 B
Ruby

module NavHelper
def link_highlight(path:)
active?(path:) ? 'active' : ''
end
def active?(path:)
current_page?(path)
end
end