Sha256: 7c06748ae92bad57d9712a77c40abd59ad7c2bdc236613088ab7ac40721b685a
Contents?: true
Size: 1.03 KB
Versions: 23
Compression:
Stored size: 1.03 KB
Contents
module UiBibz::Ui::Core # Create a modal body # # ==== Attributes # # * +content+ - Content of element # * +options+ - Options of element # * +html_options+ - Html Options of element # # ==== Options # # You can add HTML attributes using the +html_options+. # You can pass arguments in options attribute: # # ==== Signatures # # UiBibz::Ui::Core::ModalBody.new(content, options = nil, html_options = nil) # # UiBibz::Ui::Core::ModalBody.new(options = nil, html_options = nil) do # content # end # # ==== Examples # # UiBibz::Ui::Core::ModalBody.new.render # # UiBibz::Ui::Core::ModalBody.new do # 'Exemple' # end.render # class ModalBody < Component # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super end # Render html tag def render content_tag :div, content, html_options end private def component_html_classes 'modal-body' end end end
Version data entries
23 entries across 23 versions & 1 rubygems