techiferous/tabulous

View on GitHub
lib/tabulous/renderers/bootstrap_navbar_renderer.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'active_support/core_ext/string'

module Tabulous
  class BootstrapNavbarRenderer < BootstrapRenderer

    def tabs_html
      <<-HTML.strip_heredoc
        <ul class="nav navbar-nav">
          #{ tab_list_html }
        </ul>
      HTML
    end

  end
end