Method: LayoutsHelper#header_logo_class

Defined in:
app/helpers/layouts_helper.rb

#header_logo_classObject

Sets “out” class to header_signed_out in frontpage and devise’s controllers and “in” class in the rest of the application



26
27
28
29
30
# File 'app/helpers/layouts_helper.rb', line 26

def header_logo_class
  controller.controller_path =~ /frontpage|devise/ ?
    'out' :
    'in'
end