aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2011-08-25 15:53:25 -0700
committerMark Otto <[email protected]>2011-08-25 15:53:25 -0700
commita5e62657262aa9b0ca35377cc2e2619d54249b7b (patch)
treed8606696cffdc5f35aa1a9c8060a617e4664a048
parent50f484eed6e9161cb7e50531b0fa3f16ada549e0 (diff)
downloadbootstrap-a5e62657262aa9b0ca35377cc2e2619d54249b7b.tar.xz
bootstrap-a5e62657262aa9b0ca35377cc2e2619d54249b7b.zip
remove common-table class in the docs
-rw-r--r--docs/index.html6
1 files changed, 3 insertions, 3 deletions
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 @@
</tbody>
</table>
<pre class="prettyprint linenums">
-&lt;table class="common-table"&gt;
+&lt;table&gt;
...
&lt;/table&gt;</pre>
<h3>Example: Zebra-striped</h3>
@@ -549,7 +549,7 @@
</table>
<p><strong>Note:</strong> Zebra-striping is a progressive enhancement not available for older browsers like IE8 and below.</p>
<pre class="prettyprint linenums">
-&lt;table class="common-table zebra-striped"&gt;
+&lt;table class="zebra-striped"&gt;
...
&lt;/table&gt;</pre>
<h3>Example: Zebra-striped w/ TableSorter.js</h3>
@@ -591,7 +591,7 @@
$("table#sortTableExample").tablesorter({ sortList: [[1,0]] });
});
&lt;/script&gt;
-&lt;table class="common-table zebra-striped"&gt;
+&lt;table class="zebra-striped"&gt;
...
&lt;/table&gt;</pre>
</div>