view data/js/custom.js @ 6:2ffa8172dce1

Tests for valid RNA Seq bam and warnings when there are no RNA counts
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Wed, 12 Aug 2015 16:28:43 +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();
    });
}
);