name: "Back Room" display_name: "Nuanced" panels { name: "COURSE" path: "Panels/Rhymes/panel_1" clue: "course" answer: "horse" symbols: ZERO } panels { name: "WEIGH (1)" path: "Panels/Rhymes/panel_2" clue: "weigh" answer: "neigh" symbols: ZERO } panels { name: "WEIGH (2)" path: "Panels/Rhymes/panel_3" clue: "weigh" answer: "hay" symbols: ZERO } panels { name: "BUYER" path: "Panels/Rhymes/panel_4" clue: "buyer" answer: "hire" symbols: ZERO } panels { name: "GNASH" path: "Panels/Rhymes/panel_5" clue: "gnash" answer: "cash" symbols: ZERO } panels { name: "LIMB" path: "Panels/Rhymes/panel_6" clue: "limb" answer: "him" symbols: ZERO } panels { name: "SPARE" path: "Panels/Rhymes/panel_7" clue: "spare" answer: "flare" symbols: ZERO } bb7b6e629923a'>this commit mixed-content personal blog
about summary refs log tree commit diff stats
path: root/app/helpers/admin/admin_helper.rb
blob: 97781a0ef103d1aaddd896a3033499fda449daa3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
module Admin::AdminHelper

  def major_sidebar_attrs(section)
    if section == @section
      { class: "major active" }
    else
      { class: "major inactive" }
    end
  end

end