From a5e62657262aa9b0ca35377cc2e2619d54249b7b Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Thu, 25 Aug 2011 15:53:25 -0700 Subject: remove common-table class in the docs --- docs/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs') diff --git a/docs/index.html b/docs/index.html index ebaa5a6f3..eb3372b42 100644 --- a/docs/index.html +++ b/docs/index.html @@ -512,7 +512,7 @@
-<table class="common-table">
+<table>
   ...
 </table>

Example: Zebra-striped

@@ -549,7 +549,7 @@

Note: Zebra-striping is a progressive enhancement not available for older browsers like IE8 and below.

-<table class="common-table zebra-striped">
+<table class="zebra-striped">
 ...
 </table>

Example: Zebra-striped w/ TableSorter.js

@@ -591,7 +591,7 @@ $("table#sortTableExample").tablesorter({ sortList: [[1,0]] }); }); </script> -<table class="common-table zebra-striped"> +<table class="zebra-striped"> ... </table> -- cgit v1.2.3 From 4f67e135dc2a8ad7a7b3d8946cc7a857a34881a0 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Fri, 26 Aug 2011 20:38:23 -0700 Subject: adding dropdowns to tabs by refactoring the shizzzz out of them --- docs/assets/js/application.js | 6 +++--- docs/index.html | 32 +++++++++++++++++++++++++------- 2 files changed, 28 insertions(+), 10 deletions(-) (limited to 'docs') diff --git a/docs/assets/js/application.js b/docs/assets/js/application.js index 30677829e..aaf76e0f0 100644 --- a/docs/assets/js/application.js +++ b/docs/assets/js/application.js @@ -5,6 +5,7 @@ $(document).ready(function(){ prettyPrint(); + // scroll spy logic // ================ @@ -19,7 +20,6 @@ $(document).ready(function(){ return $(id).offset().top; }); - function setButton(id) { nav.parent("li").removeClass('active'); $(nav[$.inArray(id, targets)]).parent("li").addClass('active'); @@ -48,10 +48,10 @@ $(document).ready(function(){ // =============================== $("body").bind("click", function (e) { - $('a.menu').parent("li").removeClass("open"); + $('.dropdown-toggle').parent("li").removeClass("open"); }); - $("a.menu").click(function (e) { + $(".dropdown-toggle").click(function (e) { var $li = $(this).parent("li").toggleClass('open'); return false; }); diff --git a/docs/index.html b/docs/index.html index bc0e216ab..cbc482002 100644 --- a/docs/index.html +++ b/docs/index.html @@ -34,10 +34,10 @@
-
+

Bootstrap

-
    +