From 581f2563b0f087f7b955f99fccb3fb6b4635276e Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Fri, 19 Aug 2011 14:23:41 -0700 Subject: [PATCH] remove type attr from docs --- docs/index.html | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/index.html b/docs/index.html index f32d7cf36a..ff592e7adf 100644 --- a/docs/index.html +++ b/docs/index.html @@ -5,13 +5,13 @@ Twitter Bootstrap - - + + - + @@ -58,14 +58,14 @@
Hotlink the CSS

For the quickest and easiest start, just copy this snippet into your webpage.

- +
Use it with Less

A fan of using Less? No problem, just clone the repo and add these lines:

-
@@ -533,10 +533,10 @@
-<script type="text/javascript" src="js/jquery/jquery.tablesorter.min.js"></script>
-<script type="text/javascript">
-  $(document).ready(function() {
-    $("table#sortTableExample").tablesorter( {sortList: [[1,0]]} );
+<script src="js/jquery/jquery.tablesorter.min.js"></script>
+<script >
+  $(function() {
+    $("table#sortTableExample").tablesorter({ sortList: [[1,0]] });
   });
 </script>
 <table class="common-table zebra-striped">
@@ -1156,8 +1156,8 @@ Lorem ipsum dolar sit amet illo error ipsum verita
     

How to use it

Use this option to make full use of Bootstrap's Less variables, mixins, and nesting in CSS via javascript in your browser.

-<link rel="stylesheet/less" type="text/css" href="less/bootstrap.less" media="all" />
-<script type="text/javascript" src="js/less-1.0.41.min.js"></script>
+<link rel="stylesheet/less" href="less/bootstrap.less" media="all" /> +<script src="js/less-1.0.41.min.js"></script>

Not feeling the .js solution? Try the Less Mac app or use Node.js to compile when you deploy your code.

What's included

-- 2.47.2