view data/js/custom.js @ 9:e6e9e09eef09

Add sample images for ribocount and riboplot
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Mon, 17 Aug 2015 10:29:59 +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();
    });
}
);