mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Docs: Bootstrap needs jQuery <v3.0.0; also fix links
This commit is contained in:
parent
84180c1961
commit
e700b2a35a
@ -10,7 +10,7 @@ There are a number of ways to get involved with the development of this fork of
|
|||||||
|
|
||||||
## How to Report issues, or make requests.
|
## How to Report issues, or make requests.
|
||||||
|
|
||||||
* First off make sure it's a new issue. Search the [FAQ](https://github.com/Mottie/tablesorter/wiki/FAQ), [documents](http://mottie.github.io/tablesorter/docs/) and the [issues](https://github.com/Mottie/tablesorter/issues).
|
* First off make sure it's a new issue. Search the [FAQ](https://github.com/Mottie/tablesorter/wiki/FAQ), [documents](https://mottie.github.io/tablesorter/docs/) and the [issues](https://github.com/Mottie/tablesorter/issues).
|
||||||
* If it's an existing issue or feature request, and you want to show that it is also a concern for you. Add a comment!
|
* If it's an existing issue or feature request, and you want to show that it is also a concern for you. Add a comment!
|
||||||
* If it turns out to not be an issue, but a question instead:
|
* If it turns out to not be an issue, but a question instead:
|
||||||
* Please don't open a new issue.
|
* Please don't open a new issue.
|
||||||
|
@ -126,11 +126,11 @@
|
|||||||
</span>
|
</span>
|
||||||
<span class="right">
|
<span class="right">
|
||||||
<span class="prev">
|
<span class="prev">
|
||||||
<img src="http://mottie.github.com/tablesorter/addons/pager/icons/prev.png" /> Prev
|
<img src="https://mottie.github.com/tablesorter/addons/pager/icons/prev.png" /> Prev
|
||||||
</span>
|
</span>
|
||||||
<span class="pagecount"></span>
|
<span class="pagecount"></span>
|
||||||
<span class="next">Next
|
<span class="next">Next
|
||||||
<img src="http://mottie.github.com/tablesorter/addons/pager/icons/next.png" />
|
<img src="https://mottie.github.com/tablesorter/addons/pager/icons/next.png" />
|
||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
@ -85,7 +85,7 @@
|
|||||||
<li>There is an issue with the processing icon not appearing at all, or the animation appears frozen when processing data in very large tables. This is due to javascript only being able to process one thread at-a-time; If you know of a solution or work-around please <a href="https://github.com/Mottie/tablesorter/issues/158">add a comment</a> or contribute a fix!</li>
|
<li>There is an issue with the processing icon not appearing at all, or the animation appears frozen when processing data in very large tables. This is due to javascript only being able to process one thread at-a-time; If you know of a solution or work-around please <a href="https://github.com/Mottie/tablesorter/issues/158">add a comment</a> or contribute a fix!</li>
|
||||||
<li><strong>I have found a solution for the processing icon animation</strong>
|
<li><strong>I have found a solution for the processing icon animation</strong>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Use CSS3 animations instead of an animated gif! Here is a <a href="http://jsfiddle.net/Mottie/2a941ru0/">demo</a>.</li>
|
<li>Use CSS3 animations instead of an animated gif! Here is a <a href="https://jsfiddle.net/Mottie/2a941ru0/">demo</a>.</li>
|
||||||
<li>I have yet to incorporate it because it requires that all headers cells contain an inner div. And since it is possible to set the <a href="index.html#headertemplate">headerTemplate</a> to an empty string to prevent modifying the cell, I thought it might be best to put this off until the next major release (Abelt); whenever I have time to work on it.</li>
|
<li>I have yet to incorporate it because it requires that all headers cells contain an inner div. And since it is possible to set the <a href="index.html#headertemplate">headerTemplate</a> to an empty string to prevent modifying the cell, I thought it might be best to put this off until the next major release (Abelt); whenever I have time to work on it.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
<script id="js">$(function() {
|
<script id="js">$(function() {
|
||||||
|
|
||||||
// See http://mottie.github.io/tablesorter/docs/example-widget-grouping.html
|
// See https://mottie.github.io/tablesorter/docs/example-widget-grouping.html
|
||||||
// for details on how to use CLDR data for a locale to add data for this parser
|
// for details on how to use CLDR data for a locale to add data for this parser
|
||||||
// CLDR returns { sun: "Sun", mon: "Mon", tue: "Tue", wed: "Wed", thu: "Thu", ... }
|
// CLDR returns { sun: "Sun", mon: "Mon", tue: "Tue", wed: "Wed", thu: "Thu", ... }
|
||||||
|
|
||||||
|
@ -5,11 +5,11 @@
|
|||||||
<title>jQuery tablesorter 2.0 - Chart Widget</title>
|
<title>jQuery tablesorter 2.0 - Chart Widget</title>
|
||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script src="js/jquery-latest.min.js"></script>
|
<script src="js/jquery-2.2.4.min.js"></script>
|
||||||
<script src="js/jquery-ui.min.js"></script>
|
<script src="js/jquery-ui.min.js"></script>
|
||||||
|
|
||||||
<!-- Demo stuff -->
|
<!-- Demo stuff -->
|
||||||
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.3.0/css/font-awesome.min.css">
|
||||||
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
||||||
<link rel="stylesheet" href="css/jq.css">
|
<link rel="stylesheet" href="css/jq.css">
|
||||||
<link rel="stylesheet" href="css/prettify.css">
|
<link rel="stylesheet" href="css/prettify.css">
|
||||||
@ -19,7 +19,7 @@
|
|||||||
<script src="js/bootstrap.min.js"></script>
|
<script src="js/bootstrap.min.js"></script>
|
||||||
|
|
||||||
<!-- Google charts -->
|
<!-- Google charts -->
|
||||||
<script src="http://www.google.com/jsapi"></script>
|
<script src="https://www.google.com/jsapi"></script>
|
||||||
|
|
||||||
<!-- Tablesorter: required -->
|
<!-- Tablesorter: required -->
|
||||||
<link rel="stylesheet" href="../css/theme.blue.css">
|
<link rel="stylesheet" href="../css/theme.blue.css">
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<title>jQuery tablesorter 2.0 - Column Selector Widget</title>
|
<title>jQuery tablesorter 2.0 - Column Selector Widget</title>
|
||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script src="js/jquery-latest.min.js"></script>
|
<script src="js/jquery-2.2.4.min.js"></script>
|
||||||
|
|
||||||
<!-- Demo stuff -->
|
<!-- Demo stuff -->
|
||||||
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<title>jQuery tablesorter 2.0 - Output Widget</title>
|
<title>jQuery tablesorter 2.0 - Output Widget</title>
|
||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script src="js/jquery-latest.min.js"></script>
|
<script src="js/jquery-2.2.4.min.js"></script>
|
||||||
|
|
||||||
<!-- Demo stuff -->
|
<!-- Demo stuff -->
|
||||||
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<title>jQuery tablesorter 2.0 - Table Reflow Widget</title>
|
<title>jQuery tablesorter 2.0 - Table Reflow Widget</title>
|
||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script src="js/jquery-latest.min.js"></script>
|
<script src="js/jquery-2.2.4.min.js"></script>
|
||||||
|
|
||||||
<!-- Demo stuff -->
|
<!-- Demo stuff -->
|
||||||
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
||||||
@ -261,7 +261,7 @@
|
|||||||
<pre class="prettyprint lang-css">content: attr(data-title);</pre>
|
<pre class="prettyprint lang-css">content: attr(data-title);</pre>
|
||||||
The second method ignores the backslash and shows <code>"row1 \A row2"</code>
|
The second method ignores the backslash and shows <code>"row1 \A row2"</code>
|
||||||
</li>
|
</li>
|
||||||
<li><span class="label label-info">Update</span>: After some discussion in <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=988694">bugzilla</a>, I discovered that it is possible to add multiple lines of content usigin a data-attribute by setting a <code>white-space: pre;</code> css definition and using <code>&#10</code> instead of <code>\A</code> (<a href="http://jsfiddle.net/96pwE/5/">demo</a>), but I think I'll keep the second reflow version because it actually allows styling.</li>
|
<li><span class="label label-info">Update</span>: After some discussion in <a href="https://bugzilla.mozilla.org/show_bug.cgi?id=988694">bugzilla</a>, I discovered that it is possible to add multiple lines of content usigin a data-attribute by setting a <code>white-space: pre;</code> css definition and using <code>&#10</code> instead of <code>\A</code> (<a href="https://jsfiddle.net/96pwE/5/">demo</a>), but I think I'll keep the second reflow version because it actually allows styling.</li>
|
||||||
<li>Adding bold elements to every table tbody cell is the method used by jQuery Mobile; so, a second reflow widget "reflow2" was created to do the same, and work properly with a thead containing multiple rows.</li>
|
<li>Adding bold elements to every table tbody cell is the method used by jQuery Mobile; so, a second reflow widget "reflow2" was created to do the same, and work properly with a thead containing multiple rows.</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<title>jQuery tablesorter 2.0 - Table Reflow Widget (beta)</title>
|
<title>jQuery tablesorter 2.0 - Table Reflow Widget (beta)</title>
|
||||||
|
|
||||||
<!-- jQuery -->
|
<!-- jQuery -->
|
||||||
<script src="js/jquery-latest.min.js"></script>
|
<script src="js/jquery-2.2.4.min.js"></script>
|
||||||
|
|
||||||
<!-- Demo stuff -->
|
<!-- Demo stuff -->
|
||||||
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
<!-- Tablesorter: required -->
|
<!-- Tablesorter: required -->
|
||||||
<link rel="stylesheet" href="../css/theme.blue.css">
|
<link rel="stylesheet" href="../css/theme.blue.css">
|
||||||
<script src="../js/jquery.tablesorter.js"></script>
|
<script src="../js/jquery.tablesorter.js"></script>
|
||||||
<script src="../js/jquery.tablesorter.widgets.js"></script>
|
<script src="../js/widgets/widget-storage.js"></script>
|
||||||
|
|
||||||
<script src="../js/widgets/widget-pager.js"></script>
|
<script src="../js/widgets/widget-pager.js"></script>
|
||||||
<script src="../js/widgets/widget-filter.js"></script>
|
<script src="../js/widgets/widget-filter.js"></script>
|
||||||
|
4
docs/js/jquery-2.2.4.min.js
vendored
Normal file
4
docs/js/jquery-2.2.4.min.js
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -5,7 +5,7 @@
|
|||||||
* Copyright (c) 2007 Christian Bach
|
* Copyright (c) 2007 Christian Bach
|
||||||
* fork maintained by Rob Garrison
|
* fork maintained by Rob Garrison
|
||||||
*
|
*
|
||||||
* Examples and docs at: http://tablesorter.com
|
* Examples and original docs at: http://tablesorter.com
|
||||||
* Dual licensed under the MIT and GPL licenses:
|
* Dual licensed under the MIT and GPL licenses:
|
||||||
* http://www.opensource.org/licenses/mit-license.php
|
* http://www.opensource.org/licenses/mit-license.php
|
||||||
* http://www.gnu.org/licenses/gpl.html
|
* http://www.gnu.org/licenses/gpl.html
|
||||||
@ -15,6 +15,7 @@
|
|||||||
* @cat Plugins/Tablesorter
|
* @cat Plugins/Tablesorter
|
||||||
* @author Christian Bach - christian.bach@polyester.se
|
* @author Christian Bach - christian.bach@polyester.se
|
||||||
* @contributor Rob Garrison - https://github.com/Mottie/tablesorter
|
* @contributor Rob Garrison - https://github.com/Mottie/tablesorter
|
||||||
|
* @docs (fork) - https://mottie.github.io/tablesorter/docs/
|
||||||
*/
|
*/
|
||||||
/*jshint browser:true, jquery:true, unused:false, expr: true */
|
/*jshint browser:true, jquery:true, unused:false, expr: true */
|
||||||
;( function( $ ) {
|
;( function( $ ) {
|
||||||
|
@ -15,9 +15,9 @@
|
|||||||
}
|
}
|
||||||
],
|
],
|
||||||
"license": "(MIT OR GPL-2.0+)",
|
"license": "(MIT OR GPL-2.0+)",
|
||||||
"homepage": "http://mottie.github.com/tablesorter/",
|
"homepage": "https://mottie.github.io/tablesorter/",
|
||||||
"bugs": "https://github.com/Mottie/tablesorter/issues",
|
"bugs": "https://github.com/Mottie/tablesorter/issues",
|
||||||
"docs": "http://mottie.github.com/tablesorter/docs/index.html",
|
"docs": "https://mottie.github.io/tablesorter/docs/index.html",
|
||||||
"demo": "https://github.com/Mottie/tablesorter/wiki",
|
"demo": "https://github.com/Mottie/tablesorter/wiki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery": ">=1.2.6"
|
"jquery": ">=1.2.6"
|
||||||
|
@ -24,9 +24,9 @@
|
|||||||
"url": "http://www.gnu.org/licenses/gpl.html"
|
"url": "http://www.gnu.org/licenses/gpl.html"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"homepage": "http://mottie.github.com/tablesorter/",
|
"homepage": "https://mottie.github.io/tablesorter/",
|
||||||
"bugs": "https://github.com/Mottie/tablesorter/issues",
|
"bugs": "https://github.com/Mottie/tablesorter/issues",
|
||||||
"docs": "http://mottie.github.com/tablesorter/docs/index.html",
|
"docs": "https://mottie.github.io/tablesorter/docs/index.html",
|
||||||
"demo": "https://github.com/Mottie/tablesorter/wiki",
|
"demo": "https://github.com/Mottie/tablesorter/wiki",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"jquery": ">=1.2.6"
|
"jquery": ">=1.2.6"
|
||||||
|
Loading…
Reference in New Issue
Block a user