2018-05-07 16:47:29 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
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)
|
2017-12-04 13:05:23 +05:30
|
|
|
'active'
|
2017-03-06 23:54:29 +05:30
|
|
|
else
|
2017-12-04 13:05:23 +05:30
|
|
|
''
|
2017-03-06 23:54:29 +05:30
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|
end
|