view data/js/custom.js @ 11:7571f5c89090

Simple error message now output to HTML. Detailed error goes to standard error. Other changes: * Remove information on time taken (riboplot). * Remove striped table styles (not used. unusable on sorting). * log before re-raising errors.
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Wed, 19 Aug 2015 10:14:52 +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();
    });
}
);