toolbar.html

26 lines | 760 B Blame History Raw Download
---
categories: [Widgets]
layout: page
title: Toolbar
resource: true
tableview: true
---
      <h2>Toolbar with Horizontal Navigation</h2>
{% include widgets/layouts/navbar-primary.html %}
{% include widgets/layouts/toolbar.html %}
      <script>
      (function($) {
        $(document).ready(function() {
          // Upon clicking the find button, show the find dropdown content
          $(".btn-find").click(function () {
            $(this).parent().find(".find-pf-dropdown-container").toggle();
          });
          // Upon clicking the find close button, hide the find dropdown content
          $(".btn-find-close").click(function () {
            $(".find-pf-dropdown-container").hide();
          });

        });
      })(jQuery);
    </script>