Sha256: faf823e96ce42d380a5cd784f6736ea28a2c5e8130f8b8392ee4ea05e5d55738
Contents?: true
Size: 703 Bytes
Versions: 38
Compression:
Stored size: 703 Bytes
Contents
module UiBibz::Helpers::Ui::Core::ListsHelper # List Group Component # # +options+ (Hash) # +html_options+ (Hash) def ui_list_group content = nil, options = nil, html_options = nil, &block UiBibz::Ui::Core::Lists::ListGroup.new(content, options, html_options).tap(&block).render end # List Component # # +options+ (Hash) # +html_options+ (Hash) def ui_list content = nil, options = nil, html_options = nil, &block if is_tap(content, options) UiBibz::Ui::Core::Lists::Components::List.new(content, options, html_options).tap(&block).render else UiBibz::Ui::Core::Lists::Components::List.new(content, options, html_options, &block).render end end end
Version data entries
38 entries across 38 versions & 1 rubygems