Sha256: 7e8cdcbe98f9ed3da0c4217905abb592b618ee80e013baa7e937ba1e9474260a
Contents?: true
Size: 835 Bytes
Versions: 26
Compression:
Stored size: 835 Bytes
Contents
module UiBibz::Ui::Core::Navigations # Create a Navbar # # This element is an extend of UiBibz::Ui::Core::Component. # # ==== 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: class NavbarBrand < UiBibz::Ui::Core::Component # See UiBibz::Ui::Core::Component.initialize def initialize content = nil, options = nil, html_options = nil, &block super end # Render html tag def pre_render link_to content, brand_url, html_options end private def component_html_classes 'navbar-brand' end def brand_url options[:url] || "/" end end end
Version data entries
26 entries across 26 versions & 1 rubygems