Sha256: 69d1b96b30b718ab956b33a8f189996cdb31e141b1716d90de66064da5c7f1ba
Contents?: true
Size: 775 Bytes
Versions: 55
Compression:
Stored size: 775 Bytes
Contents
module ActiveAdmin module Views class Panel < ActiveAdmin::Component builder_method :panel def build(title, attributes = {}) icon_name = attributes.delete(:icon) icn = icon_name ? icon(icon_name) : "" super(attributes) add_class "panel" @title = h3(icn + title.to_s) @contents = div(:class => "panel_contents") end def add_child(child) if @contents @contents << child else super end end # Override children? to only report children when the panel's # contents have been added to. This ensures that the panel # correcly appends string values, etc. def children? @contents.children? end end end end
Version data entries
55 entries across 55 versions & 2 rubygems