From 2f03bd3a6b97a88bee165e3932ae1332014b9372 Mon Sep 17 00:00:00 2001 From: aditya Date: Sun, 24 Jun 2012 05:49:16 +0530 Subject: [PATCH] Added third tab information also in Tabbable Component documentation --- docs/components.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/components.html b/docs/components.html index 2207103f516a..43510307bbf9 100644 --- a/docs/components.html +++ b/docs/components.html @@ -888,6 +888,7 @@

Tabbable example

<ul class="nav nav-tabs"> <li class="active"><a href="#tab1" data-toggle="tab">Section 1</a></li> <li><a href="#tab2" data-toggle="tab">Section 2</a></li> + <li><a href="#tab3" data-toggle="tab">Section 3</a></li> </ul> <div class="tab-content"> <div class="tab-pane active" id="tab1"> @@ -896,6 +897,9 @@

Tabbable example

<div class="tab-pane" id="tab2"> <p>Howdy, I'm in Section 2.</p> </div> + <div class="tab-pane" id="tab3"> + <p>What up girl, this is Section 3.</p> + </div> </div> </div>