view data/js/custom.js @ 1:1e9797878349

remove samtools requirement and use updated pysam
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Mon, 29 Jun 2015 17:12:15 +0100
parents ca58e9466cbf
children
line wrap: on
line source

$(document).ready(function()
{
    $("#counts-table").tablesorter({sortList: [[2,1]]});
        //assign the sortStart event
    $("#counts-table").bind("sortStart", function() {
        $("#overlay").show();
    }).bind("sortEnd",function() {
        $("#overlay").hide();
    });
}
);