From c55329085ebc6d05d91412251331c0613ea2250b Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Tue, 15 Jan 2013 07:22:02 +0000 Subject: [PATCH] Revert "Leave tabindex=-1 alone" This reverts commit 370fa45fbe4ee879a626a67bb4df0ec9495102be. --- docs/components.html | 80 ++++++++++++++++++++++---------------------- docs/javascript.html | 48 +++++++++++++------------- 2 files changed, 64 insertions(+), 64 deletions(-) diff --git a/docs/components.html b/docs/components.html index 3c69c002b5..10ffd2e0c7 100644 --- a/docs/components.html +++ b/docs/components.html @@ -118,21 +118,21 @@
 <ul class="dropdown-menu" role="menu" aria-labelledby="dropdownMenu">
-  <li><a href="#">Action</a></li>
-  <li><a href="#">Another action</a></li>
-  <li><a href="#">Something else here</a></li>
+  <li><a tabindex="-1" href="#">Action</a></li>
+  <li><a tabindex="-1" href="#">Another action</a></li>
+  <li><a tabindex="-1" href="#">Something else here</a></li>
   <li class="divider"></li>
-  <li><a href="#">Separated link</a></li>
+  <li><a tabindex="-1" href="#">Separated link</a></li>
 </ul>
 
@@ -143,11 +143,11 @@ <div class="dropdown"> <!-- Link or button to toggle dropdown --> <ul class="dropdown-menu" role="menu" aria-labelledby="dLabel"> - <li><a href="#">Action</a></li> - <li><a href="#">Another action</a></li> - <li><a href="#">Something else here</a></li> + <li><a tabindex="-1" href="#">Action</a></li> + <li><a tabindex="-1" href="#">Another action</a></li> + <li><a tabindex="-1" href="#">Something else here</a></li> <li class="divider"></li> - <li><a href="#">Separated link</a></li> + <li><a tabindex="-1" href="#">Separated link</a></li> </ul> </div> @@ -171,18 +171,18 @@

Default