mirror of
https://github.com/edcommonwealth/ecp.org.git
synced 2026-03-07 21:48:13 -08:00
11 lines
180 B
Ruby
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
|