2016-11-15 09:56:29 -06:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-20 15:53:20 -06:00
|
|
|
module ApplicationHelper
|
2016-03-12 12:46:06 -06:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2017-04-15 20:40:33 -05:00
|
|
|
|
|
|
|
def show_landing_strip?
|
|
|
|
!user_signed_in? && !single_user_mode?
|
|
|
|
end
|
2016-02-20 15:53:20 -06:00
|
|
|
end
|