jbox-web/simple_navigation_bootstrap

View on GitHub
lib/simple_navigation_bootstrap/bootstrap3.rb

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
# frozen_string_literal: true

module SimpleNavigationBootstrap
  class Bootstrap3 < SimpleNavigation::Renderer::Base

    include BootstrapBase


    private


      def bootstrap_version
        3
      end


      def navigation_class
        'navbar-nav'
      end

  end
end