diff --git a/docs/_includes/js/affix.html b/docs/_includes/js/affix.html index f32b376de5..3cb846ea90 100644 --- a/docs/_includes/js/affix.html +++ b/docs/_includes/js/affix.html @@ -77,7 +77,7 @@ $('#myAffix').affix({

Events

Bootstrap's affix plugin exposes a few events for hooking into affix functionality.

- +
diff --git a/docs/_includes/js/alerts.html b/docs/_includes/js/alerts.html index f2e70fa017..8a207cc7ff 100644 --- a/docs/_includes/js/alerts.html +++ b/docs/_includes/js/alerts.html @@ -47,7 +47,7 @@

Events

Bootstrap's alert plugin exposes a few events for hooking into alert functionality.

-
Event Type
+
diff --git a/docs/_includes/js/carousel.html b/docs/_includes/js/carousel.html index 02d01bc3c0..abd2890b8f 100644 --- a/docs/_includes/js/carousel.html +++ b/docs/_includes/js/carousel.html @@ -227,7 +227,7 @@ $('.carousel').carousel({
  • relatedTarget: The DOM element that is being slid into place as the active item.
  • -
    Event Type
    +
    diff --git a/docs/_includes/js/collapse.html b/docs/_includes/js/collapse.html index 44d05e5366..a5ef034104 100644 --- a/docs/_includes/js/collapse.html +++ b/docs/_includes/js/collapse.html @@ -212,7 +212,7 @@ $('#myCollapsible').collapse({

    Events

    Bootstrap's collapse class exposes a few events for hooking into collapse functionality.

    -
    Event Type
    +
    diff --git a/docs/_includes/js/dropdowns.html b/docs/_includes/js/dropdowns.html index 28b5993092..1bfea563c9 100644 --- a/docs/_includes/js/dropdowns.html +++ b/docs/_includes/js/dropdowns.html @@ -165,7 +165,7 @@ $('.dropdown-toggle').dropdown()

    All dropdown events are fired at the .dropdown-menu's parent element.

    -
    Event Type
    +
    diff --git a/docs/_includes/js/modal.html b/docs/_includes/js/modal.html index 4c0d46e9b0..d337908338 100644 --- a/docs/_includes/js/modal.html +++ b/docs/_includes/js/modal.html @@ -378,7 +378,7 @@ $('#myModal').modal({

    Events

    Bootstrap's modal class exposes a few events for hooking into modal functionality.

    -
    Event Type
    +
    diff --git a/docs/_includes/js/popovers.html b/docs/_includes/js/popovers.html index a03c8d9a8d..25db7cd77b 100644 --- a/docs/_includes/js/popovers.html +++ b/docs/_includes/js/popovers.html @@ -268,7 +268,7 @@ sagittis lacus vel augue laoreet rutrum faucibus."> {% highlight js %}$('#element').popover('destroy'){% endhighlight %}

    Events

    -
    Event Type
    +
    diff --git a/docs/_includes/js/scrollspy.html b/docs/_includes/js/scrollspy.html index d58ddbe5aa..9df8dc8135 100644 --- a/docs/_includes/js/scrollspy.html +++ b/docs/_includes/js/scrollspy.html @@ -128,7 +128,7 @@ $('[data-spy="scroll"]').each(function () {

    Events

    -
    Event Type
    +
    diff --git a/docs/_includes/js/tabs.html b/docs/_includes/js/tabs.html index 9de511b9a6..8c5ed1f455 100644 --- a/docs/_includes/js/tabs.html +++ b/docs/_includes/js/tabs.html @@ -128,7 +128,7 @@ $('#myTab li:eq(2) a').tab('show') // Select third tab (0-indexed)

    If no tab was already active, then the hide.bs.tab and hidden.bs.tab events will not be fired.

    -
    Event Type
    +
    diff --git a/docs/_includes/js/tooltips.html b/docs/_includes/js/tooltips.html index f349d08d3e..7d6107ef24 100644 --- a/docs/_includes/js/tooltips.html +++ b/docs/_includes/js/tooltips.html @@ -231,7 +231,7 @@ $('#example').tooltip(options)

    Events

    -
    Event Type
    +
    diff --git a/docs/assets/css/src/docs.css b/docs/assets/css/src/docs.css index c7b13f169b..63370f31cf 100644 --- a/docs/assets/css/src/docs.css +++ b/docs/assets/css/src/docs.css @@ -1147,6 +1147,11 @@ h1[id] { overflow: auto; } +/* Don't wrap event names in Events tables in JS plugin docs */ +.bs-events-table > thead > tr > th:first-child, +.bs-events-table > tbody > tr > td:first-child { + white-space: nowrap; +} /* * Code snippets
    Event Type