view data/js/custom.js @ 3:8e1efafa6277

Updated version * Bugfix: blue lines in some plots (bar colors were not set correctly) * Cookiecutter template * Additional unit tests * Add plot legend
author Vimalkumar Velayudhan <vimal@biotechcoder.com>
date Wed, 12 Aug 2015 09:27:45 +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();
    });
}
);