Select Git revision
Forked from
Wayne Motycka / MyMovieLibrary
Source project has a limited visibility.
-
Brian Wood authoredBrian Wood authored
default.js 372 B
(function() {
WDN.jQuery(function() {
WDN.jQuery('td[colspan]').parent().hide()
WDN.jQuery('.zentable tbody tr').click(function(event) {
if (event.target.nodeName != 'TD' && event.target.nodName != 'TR') {
return;
}
WDN.jQuery(this).next().toggle('slow');
});
WDN.jQuery('.zentable').tablesorter({
widgets: ['zebra'],
});
});
})();