Method: ActiveAdmin::Views::Panel#build

Defined in:
lib/active_admin/views/components/panel.rb

#build(title, attributes = {}) ⇒ Object



7
8
9
10
11
12
# File 'lib/active_admin/views/components/panel.rb', line 7

def build(title, attributes = {})
  super(attributes)
  add_class "panel"
  @title = h3(title.to_s)
  @contents = div(class: "panel_contents")
end