diff options
| author | Mark Otto <[email protected]> | 2012-01-07 12:22:51 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2012-01-07 12:22:51 -0800 |
| commit | a339f0051b21f9e51d47c3eb1fd7d37f126e87a0 (patch) | |
| tree | 628a7cbac880fbc4a98ff9e5819b43d4432bfe4d /docs/base-css.html | |
| parent | 95c88a2953d6493050192f9c99c8e5597e591ac3 (diff) | |
| download | bootstrap-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.html | 4 |
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><i></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"> <i class="chevron-left"></i> </pre> <p>There are over 100 classes to choose from for your icons. Just add an <code><i></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> |
