mirror of
https://github.com/Mottie/tablesorter.git
synced 2024-11-15 23:54:22 +00:00
64 lines
1.6 KiB
JavaScript
64 lines
1.6 KiB
JavaScript
/* Stop IE flicker */
|
|
if ($.browser.msie == true) document.execCommand('BackgroundImageCache', false, true);
|
|
|
|
jQuery.fn.antispam = function() {
|
|
return this.each(function(){
|
|
var email = $(this).text().toLowerCase().replace(/\sdot/g,'.').replace(/\sat/g,'@').replace(/\s+/g,'');
|
|
var URI = "mailto:" + email;
|
|
$(this).hide().before(
|
|
$("<a></a>").attr("href",URI).addClass("external").text(email)
|
|
);
|
|
});
|
|
};
|
|
|
|
$(function(){
|
|
|
|
$("a.external").each(function() {this.target = '_new'});
|
|
$("span.email").antispam();
|
|
|
|
// get javascript source
|
|
if ($("#js").length) {
|
|
$("#javascript pre").text( $("#js").html().replace(/\t/g, " ") );
|
|
}
|
|
if ($("#css").length) {
|
|
$("pre.css").text( $("#css").html().replace(/\t/g, " ") );
|
|
}
|
|
if ($("#demo").length) {
|
|
$("#html pre").text( $("#demo").html().replace(/\t/g, " ") );
|
|
}
|
|
|
|
// hide child rows
|
|
$('#root .expand-child').hide();
|
|
// toggle child row content, not hiding the row since we are using rowspan
|
|
$('#root .toggle').click(function(){
|
|
$(this).closest('tr').nextUntil('tr:not(.expand-child)').toggle();
|
|
return false;
|
|
});
|
|
|
|
$('.collapsible').hide();
|
|
$('.toggle2').click(function(){
|
|
$(this).closest('tr').find('.collapsible').slideToggle();
|
|
return false;
|
|
});
|
|
|
|
$('.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) {
|
|
$.getJSON('../package.json', function(data) {
|
|
t.html(data.version || '2.0+');
|
|
});
|
|
}
|
|
|
|
});
|
|
|
|
$(window).load(function(){
|
|
$(".js").chili();
|
|
$(".html").chili();
|
|
$(".css").chili();
|
|
}); |