From: Mark Otto Date: Fri, 26 Aug 2011 06:18:15 +0000 (-0700) Subject: pull table class from docs again X-Git-Tag: v1.1.1~1^2~5 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c715584428752c885193b8e72d1b3156eb770aa7;p=thirdparty%2Fbootstrap.git pull table class from docs again --- diff --git a/docs/index.html b/docs/index.html index e0c980b8ba..2cf2415c1a 100644 --- a/docs/index.html +++ b/docs/index.html @@ -503,7 +503,7 @@
-<table class="common-table">
+<table>
   ...
 </table>

Example: Zebra-striped

@@ -540,7 +540,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

@@ -582,7 +582,7 @@ $("table#sortTableExample").tablesorter({ sortList: [[1,0]] }); }); </script> -<table class="common-table zebra-striped"> +<table class="zebra-striped"> ... </table>