From e12547d1deda059404fc3961442195514fe990ed Mon Sep 17 00:00:00 2001 From: Tommy Kelly Date: Mon, 28 Sep 2015 16:23:21 -0400 Subject: [PATCH] Docs - clarify purpose of CSS class .in to .fade --- docs/_includes/js/tabs.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/_includes/js/tabs.html b/docs/_includes/js/tabs.html index 033b424303..e3ae4998ae 100644 --- a/docs/_includes/js/tabs.html +++ b/docs/_includes/js/tabs.html @@ -81,7 +81,7 @@ $('#myTabs li:eq(2) a').tab('show') // Select third tab (0-indexed) {% endhighlight %}

Fade effect

-

To make tabs fade in, add .fade to each .tab-pane. The first tab pane must also have .in to properly fade in initial content.

+

To make tabs fade in, add .fade to each .tab-pane. The first tab pane must also have .in to make the initial content visible.

{% highlight html %}
...