1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-03-01 22:13:48 -05:00

8 lines
135 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-02-20 22:53:20 +01:00
module ApplicationHelper
def active_nav_class(path)
current_page?(path) ? 'active' : ''
end
2016-02-20 22:53:20 +01:00
end