tablesorter/docs/js/docs.js

82 lines
1.9 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
// get javascript source
if ($("#js").length) {
$("#javascript pre").text( $("#js").html().replace(/\t/g, " ") );
}
if ($("#css").length) {
$("pre.lang-css").text( $("#css").html().replace(/\t/g, " ") );
2011-07-17 15:01:18 +00:00
}
if ($("#demo").length) {
2011-09-22 22:32:58 +00:00
$("#html pre").text( $("#demo").html().replace(/\t/g, " ") );
2011-07-17 15:01:18 +00:00
}
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();
2011-06-22 23:19:27 +00:00
});