Browse Source

Update docs.

zhixin 11 years ago
parent
commit
c448ae181f
3 changed files with 5 additions and 4 deletions
  1. 1 1
      README.md
  2. 3 2
      docs/getting-started.html
  3. 1 1
      docs/index.html

+ 1 - 1
README.md

@@ -2,7 +2,7 @@
 
 
 [![Build Status](https://travis-ci.org/wenzhixin/bootstrap-table.png)](https://travis-ci.org/wenzhixin/bootstrap-table)
 [![Build Status](https://travis-ci.org/wenzhixin/bootstrap-table.png)](https://travis-ci.org/wenzhixin/bootstrap-table)
 
 
-The table displays data in a tabular format and offers rich support to radio, checkbox, sort, pagination and so on. The table has been designed to reduce development time and to require no specific knowledge from developers. It is both featherweight and feature-rich.
+Bootstrap table displays data in a tabular format and offers rich support to radio, checkbox, sort, pagination and so on. The table has been designed to reduce development time and to require no specific knowledge from developers. It is both featherweight and feature-rich.
 
 
 * [Documentation](http://wenzhixin.net.cn/p/bootstrap-table/docs/documentation.html)
 * [Documentation](http://wenzhixin.net.cn/p/bootstrap-table/docs/documentation.html)
 * [Examples](http://wenzhixin.net.cn/p/bootstrap-table/docs/examples.html)
 * [Examples](http://wenzhixin.net.cn/p/bootstrap-table/docs/examples.html)

+ 3 - 2
docs/getting-started.html

@@ -114,10 +114,11 @@
                     <h1 id="usage" data-zh="使用">Usage</h1>
                     <h1 id="usage" data-zh="使用">Usage</h1>
                 </div>
                 </div>
                 <p data-zh="在html页面的head标签中引入Bootstrap库(假如你的项目还没使用)和bootstrap-table.css。">Include Bootstrap library (if your project doesn't use it already) and bootstrap-table.css in the head tag your html document.</p>
                 <p data-zh="在html页面的head标签中引入Bootstrap库(假如你的项目还没使用)和bootstrap-table.css。">Include Bootstrap library (if your project doesn't use it already) and bootstrap-table.css in the head tag your html document.</p>
-<pre><code>&lt;link rel="stylesheet" href="bootstrap.css"&gt;
+<pre><code>&lt;link rel="stylesheet" href="bootstrap.min.css"&gt;
 &lt;link rel="stylesheet" href="bootstrap-table.css"&gt;</code></pre>
 &lt;link rel="stylesheet" href="bootstrap-table.css"&gt;</code></pre>
-                <p data-zh="在head标签或者在body标签闭合前(比较推荐)引入jQuery库(假如你的项目还没使用)和bootstrap-table.js。">Include jQuery library (if your project doesn’t use it already) and bootstrap-table.js in the head tag or at the very bottom of your document, just before the closing body tag (usually recommended for better performance).</p>
+                <p data-zh="在head标签或者在body标签闭合前(比较推荐)引入jQuery库和Bootstrap库(假如你的项目还没使用)和bootstrap-table.js。">Include jQuery library, bootstrap library (if your project doesn’t use it already) and bootstrap-table.js in the head tag or at the very bottom of your document, just before the closing body tag (usually recommended for better performance).</p>
 <pre><code>&lt;script src="jquery.min.js"&gt;&lt;/script&gt;
 <pre><code>&lt;script src="jquery.min.js"&gt;&lt;/script&gt;
+&lt;script src="bootstrap.min.js"&gt;&lt;/script&gt;
 &lt;script src="bootstrap-table.js"&gt;&lt;/script&gt;</code></pre>
 &lt;script src="bootstrap-table.js"&gt;&lt;/script&gt;</code></pre>
 
 
                 <hr>
                 <hr>

File diff suppressed because it is too large
+ 1 - 1
docs/index.html