osem-fcy/app/helpers/paths_helper.rb

14 lines
201 B
Ruby
Raw Normal View History

2017-03-06 23:54:29 +05:30
module PathsHelper
##
# Includes functions related to links or redirects
##
def active_nav_li(link)
if current_page?(link)
return 'active'
else
return ''
end
end
end