mirror of
https://iceshrimp.dev/blueb/Chuckya-fe-standalone.git
synced 2026-01-18 08:53:19 -08:00
5 lines
104 B
Ruby
5 lines
104 B
Ruby
module ApplicationHelper
|
|
def active_nav_class(path)
|
|
current_page?(path) ? 'active' : ''
|
|
end
|
|
end
|