Docs: Bootstrap needs jQuery <v3.0.0; also fix links

This commit is contained in:
Rob Garrison 2016-07-20 03:03:14 -05:00
parent 84180c1961
commit e700b2a35a
No known key found for this signature in database
GPG Key ID: 0A42D160D71978E1
14 changed files with 24 additions and 19 deletions

View File

@ -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.
* 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 turns out to not be an issue, but a question instead:
* Please don't open a new issue.

View File

@ -126,11 +126,11 @@
</span>
<span class="right">
<span class="prev">
<img src="http://mottie.github.com/tablesorter/addons/pager/icons/prev.png" /> Prev&nbsp;
<img src="https://mottie.github.com/tablesorter/addons/pager/icons/prev.png" /> Prev&nbsp;
</span>
<span class="pagecount"></span>
&nbsp;<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>
</div>

View File

@ -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><strong>I have found a solution for the processing icon animation</strong>
<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>
</ul>
</li>

View File

@ -30,7 +30,7 @@
<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
// CLDR returns { sun: "Sun", mon: "Mon", tue: "Tue", wed: "Wed", thu: "Thu", ... }

View File

@ -5,11 +5,11 @@
<title>jQuery tablesorter 2.0 - Chart Widget</title>
<!-- 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>
<!-- 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 rel="stylesheet" href="css/jq.css">
<link rel="stylesheet" href="css/prettify.css">
@ -19,7 +19,7 @@
<script src="js/bootstrap.min.js"></script>
<!-- Google charts -->
<script src="http://www.google.com/jsapi"></script>
<script src="https://www.google.com/jsapi"></script>
<!-- Tablesorter: required -->
<link rel="stylesheet" href="../css/theme.blue.css">

View File

@ -5,7 +5,7 @@
<title>jQuery tablesorter 2.0 - Column Selector Widget</title>
<!-- jQuery -->
<script src="js/jquery-latest.min.js"></script>
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Demo stuff -->
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">

View File

@ -5,7 +5,7 @@
<title>jQuery tablesorter 2.0 - Output Widget</title>
<!-- jQuery -->
<script src="js/jquery-latest.min.js"></script>
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Demo stuff -->
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">

View File

@ -5,7 +5,7 @@
<title>jQuery tablesorter 2.0 - Table Reflow Widget</title>
<!-- jQuery -->
<script src="js/jquery-latest.min.js"></script>
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Demo stuff -->
<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>
The second method ignores the backslash and shows <code>"row1 \A row2"</code>
</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>&amp;#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>&amp;#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>
</ul>
</li>

View File

@ -5,7 +5,7 @@
<title>jQuery tablesorter 2.0 - Table Reflow Widget (beta)</title>
<!-- jQuery -->
<script src="js/jquery-latest.min.js"></script>
<script src="js/jquery-2.2.4.min.js"></script>
<!-- Demo stuff -->
<link class="ui-theme" rel="stylesheet" href="css/jquery-ui.min.css">

View File

@ -21,7 +21,7 @@
<!-- Tablesorter: required -->
<link rel="stylesheet" href="../css/theme.blue.css">
<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-filter.js"></script>

4
docs/js/jquery-2.2.4.min.js vendored Normal file

File diff suppressed because one or more lines are too long

View File

@ -5,7 +5,7 @@
* Copyright (c) 2007 Christian Bach
* 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:
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
@ -15,6 +15,7 @@
* @cat Plugins/Tablesorter
* @author Christian Bach - christian.bach@polyester.se
* @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 */
;( function( $ ) {

View File

@ -15,9 +15,9 @@
}
],
"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",
"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",
"dependencies": {
"jquery": ">=1.2.6"

View File

@ -24,9 +24,9 @@
"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",
"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",
"dependencies": {
"jquery": ">=1.2.6"