2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-02-21 06:53:20 +09:00
|
|
|
module ApplicationHelper
|
2016-03-13 03:46:06 +09:00
|
|
|
def active_nav_class(path)
|
|
|
|
current_page?(path) ? 'active' : ''
|
|
|
|
end
|
2017-04-16 10:40:33 +09:00
|
|
|
|
|
|
|
def show_landing_strip?
|
|
|
|
!user_signed_in? && !single_user_mode?
|
|
|
|
end
|
2017-04-25 01:03:53 +09:00
|
|
|
|
|
|
|
def add_rtl_body_class(other_classes)
|
2017-04-25 05:39:15 +09:00
|
|
|
other_classes = "#{other_classes} rtl" if [:ar, :fa].include?(I18n.locale)
|
2017-04-25 01:03:53 +09:00
|
|
|
other_classes
|
|
|
|
end
|
2016-02-21 06:53:20 +09:00
|
|
|
end
|