tablesorter/docs/js/docs.js

119 lines
2.8 KiB
JavaScript
Raw Normal View History

2011-07-17 15:01:18 +00:00
$(function(){
2012-09-27 19:57:19 +00:00
$("a.external").each(function(){this.target = '_new';});
2011-07-17 15:01:18 +00:00
2013-03-27 23:13:44 +00:00
var cleanupCode = function(code){
return code.replace(/[<>\"\'\t\n]/g, function(m) { return {
'<' : '&lt;',
'>' : '&gt;',
"'" : '&#39;',
'"' : '&quot;',
'\t': ' ',
'\n': '<br/>' // needed for IE
}[m]});
};
2011-07-17 15:01:18 +00:00
// get javascript source
if ($("#js").length) {
2013-03-27 23:13:44 +00:00
$("#javascript pre").addClass('mod').html( cleanupCode( $("#js").html() ) );
2011-07-17 15:01:18 +00:00
}
if ($("#css").length) {
2013-03-27 23:13:44 +00:00
$("pre.lang-css").addClass('mod').html( cleanupCode( $("#css").html() ) );
2011-07-17 15:01:18 +00:00
}
if ($("#demo").length) {
2013-03-27 23:13:44 +00:00
$("#html pre").addClass('mod').html( cleanupCode( $("#demo").html() ) );
2011-07-17 15:01:18 +00:00
}
2013-03-27 23:13:44 +00:00
// apply to already pre-formatted blocks to add <br> for IE
$('pre:not(.mod)').each(function(){
var $t = $(this);
$t.html( cleanupCode( $t.html() ) );
});
if (typeof prettyPrint !== 'undefined') { prettyPrint(); }
2011-07-17 15:01:18 +00:00
// hide child rows
2012-09-27 19:57:19 +00:00
$('#root .tablesorter-childRow').hide();
2011-07-17 15:01:18 +00:00
// toggle child row content, not hiding the row since we are using rowspan
$('#root .toggle').click(function(){
2012-09-27 19:57:19 +00:00
$(this).closest('tr').nextUntil('tr:not(.tablesorter-childRow)').toggle();
2011-07-17 15:01:18 +00:00
return false;
});
2012-05-08 18:13:21 +00:00
var animating = false;
2011-07-17 15:01:18 +00:00
$('.collapsible').hide();
2012-05-08 18:13:21 +00:00
$('.toggle2')
.click(function(e){
if (!animating) {
animating = true;
$(this).closest('tr').find('.collapsible').slideToggle();
setTimeout(function(){ animating = false; }, 200);
}
return false;
});
$('.toggle2, span.permalink')
.dblclick(function(){
window.location.hash = '#' + $(this).closest('tr')[0].id;
return false;
});
2011-07-17 15:01:18 +00:00
$('.toggleAll, .showAll, .hideAll').click(function(){
var t = $.trim($(this).text());
$(this).parent().next('table').find('.collapsible')[t]();
return false;
});
// update version number
var t = $('.current-version');
if (t.length) {
2012-03-18 14:02:49 +00:00
t.html($.tablesorter.version);
}
2011-07-17 15:01:18 +00:00
});
2012-05-08 18:13:21 +00:00
function showProperty(){
var prop, h = window.location.hash;
if (h) {
2012-09-27 19:57:19 +00:00
prop = $(h);
2013-02-17 19:23:36 +00:00
if (prop.length && prop[0].tagName !== "TABLE") {
2012-05-08 18:13:21 +00:00
prop.find('.collapsible').show();
if (h === '#csschildrow') {
2012-09-27 19:57:19 +00:00
$('#root .tablesorter-childRow').show();
2012-05-08 18:13:21 +00:00
}
// move below sticky header
2012-09-27 19:57:19 +00:00
if (/options/.test(prop.closest('table').attr('id') || '')) {
2012-05-08 18:13:21 +00:00
$(window).scrollTop( prop.position().top - 30 );
}
}
}
2012-09-27 19:57:19 +00:00
}
2012-05-08 18:13:21 +00:00
2011-07-17 15:01:18 +00:00
$(window).load(function(){
2012-05-08 18:13:21 +00:00
$(window).bind('hashchange', function(){
showProperty();
});
showProperty();
2013-03-27 23:13:44 +00:00
});
// append hidden parsed value to cell
var addParsedValues = function($t, cols, format){
var i, j, r,
$r = $t.find('tbody tr'),
c = $t[0].config.cache[0].normalized,
l = c.length - 1;
$r.each(function(i){
r = this;
$.each(cols, function(v,j){
r.cells[j].innerHTML += ' <span class="val hidden">(<span class="results">' + (format ? format(c[i][j]) : c[i][j]) + '</span>)</span>';
});
});
$('.toggleparsedvalue').on('click', function(){
$('.val').toggleClass('hidden');
});
};