aboutsummaryrefslogtreecommitdiff
path: root/docs/base-css.html
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2012-01-07 12:22:51 -0800
committerMark Otto <[email protected]>2012-01-07 12:22:51 -0800
commita339f0051b21f9e51d47c3eb1fd7d37f126e87a0 (patch)
tree628a7cbac880fbc4a98ff9e5819b43d4432bfe4d /docs/base-css.html
parent95c88a2953d6493050192f9c99c8e5597e591ac3 (diff)
downloadbootstrap-a339f0051b21f9e51d47c3eb1fd7d37f126e87a0.tar.xz
bootstrap-a339f0051b21f9e51d47c3eb1fd7d37f126e87a0.zip
fixing tablesorter styles by adding the jquery plugin back to the lib, fixing the docs examples
Diffstat (limited to 'docs/base-css.html')
-rw-r--r--docs/base-css.html4
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/base-css.html b/docs/base-css.html
index 5a8b0b267..47858fe10 100644
--- a/docs/base-css.html
+++ b/docs/base-css.html
@@ -1486,7 +1486,7 @@
<div class="span4">
<h3>How to use</h3>
<p>With v2.0.0, the <code>&lt;i&gt;</code> tag is essentially dedicated to iconography. To use the icons, you can place the follow code wherever you like one to appear:</p>
-<pre class="prettyprint">
+<pre class="prettyprint linenums">
&lt;i class="chevron-left"&gt;&lt;/i&gt;
</pre>
<p>There are over 100 classes to choose from for your icons. Just add an <code>&lt;i&gt;</code> tag with the right class and you're set. You can find the full list in sprites.less or right here in this document.</p>
@@ -1554,11 +1554,13 @@
<!-- Le javascript -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="http://code.jquery.com/jquery-1.7.min.js"></script>
+ <script src="assets/js/jquery.tablesorter.js"></script>
<script src="assets/js/google-code-prettify/prettify.js"></script>
<script src="assets/js/application.js"></script>
<script src="../js/bootstrap-dropdown.js"></script>
<script>
$(function () {
+ $("#sortTableExample").tablesorter({ sortList: [[1,0]] });
$('.dropdown-toggle').dropdown();
})
</script>