anthonymidili/Bullhorn

View on GitHub
app/helpers/theme_helper.rb

Summary

Maintainability
A
0 mins
Test Coverage
module ThemeHelper
  def return_active_for_current_theme(theme)
    if theme == cookies[:theme].try(:to_sym) || theme == :system && cookies[:theme].blank?
      "active"
    end
  end
end