patternfly
Version:
This reference implementation of PatternFly is based on [Bootstrap v3](http://getbootstrap.com/). Think of PatternFly as a "skinned" version of Bootstrap with additional components and customizations.
26 lines (24 loc) • 760 B
HTML
---
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>