From: Mark Otto Date: Thu, 25 Aug 2011 22:53:25 +0000 (-0700) Subject: remove common-table class in the docs X-Git-Tag: v1.2.0~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a5e62657262aa9b0ca35377cc2e2619d54249b7b;p=thirdparty%2Fbootstrap.git remove common-table class in the docs --- diff --git a/docs/index.html b/docs/index.html index ebaa5a6f3a..eb3372b420 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>