mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
Merge branch 'Infeligo-dev-delay-init-example' into working
This commit is contained in:
commit
2e92c3b3c1
72672
docs/example-option-delay-init.html
Normal file
72672
docs/example-option-delay-init.html
Normal file
File diff suppressed because it is too large
Load Diff
@ -1118,7 +1118,7 @@
|
|||||||
|
|
||||||
<div class="next-up">
|
<div class="next-up">
|
||||||
<hr />
|
<hr />
|
||||||
Next up: <a href="example-option-digits.html">Dealing with digits! ››</a>
|
Next up: <a href="example-option-delay-init.html">Demonstration of delayInit option ››</a>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
@ -366,6 +366,7 @@
|
|||||||
<li><a href="example-multiple-tbodies.html">Sorting with Multiple Tbodies</a> (v2.2)</li>
|
<li><a href="example-multiple-tbodies.html">Sorting with Multiple Tbodies</a> (v2.2)</li>
|
||||||
<li><a href="example-header-column-span.html">Sorting Across Multiple Columns</a> (v2.3)</li>
|
<li><a href="example-header-column-span.html">Sorting Across Multiple Columns</a> (v2.3)</li>
|
||||||
<li><a href="example-option-show-processing.html">Show a processing icon during sorting/filtering</a> (v2.4)</li>
|
<li><a href="example-option-show-processing.html">Show a processing icon during sorting/filtering</a> (v2.4)</li>
|
||||||
|
<li><a href="example-option-delay-init.html">Delay table initialization</a> (<a href="#delayinit"><code>delayinit</code></a>)</li>
|
||||||
</ul>
|
</ul>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -802,7 +803,7 @@
|
|||||||
<td>
|
<td>
|
||||||
Setting this option to true will delay parsing of all table cell data until the user initializes a sort. This speeds up the initialization process of very large tables, but the data still needs to be parsed, so the delay is still present upon initial sort.
|
Setting this option to true will delay parsing of all table cell data until the user initializes a sort. This speeds up the initialization process of very large tables, but the data still needs to be parsed, so the delay is still present upon initial sort.
|
||||||
</td>
|
</td>
|
||||||
<td><a href="example-option-debug.html">Example</a></td>
|
<td><a href="example-option-delay-init.html">Example</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr id="emptyto">
|
<tr id="emptyto">
|
||||||
|
@ -21,7 +21,7 @@ $(function(){
|
|||||||
if ($("#css").length) {
|
if ($("#css").length) {
|
||||||
$("pre.lang-css").addClass('mod').html( cleanupCode( $("#css").html() ) );
|
$("pre.lang-css").addClass('mod').html( cleanupCode( $("#css").html() ) );
|
||||||
}
|
}
|
||||||
if ($("#demo").length) {
|
if ($("#demo").length && $("#html pre").length) {
|
||||||
$("#html pre").addClass('mod').html( cleanupCode( $("#demo").html() ) );
|
$("#html pre").addClass('mod').html( cleanupCode( $("#demo").html() ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user