Skip to content
Snippets Groups Projects
Select Git revision
  • e1614111cddafc1f089c85582f8e3a7b57219b55
  • master default
  • develop
3 results

loan.py

Blame
  • Forked from Wayne Motycka / MyMovieLibrary
    Source project has a limited visibility.
    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'],
    	    });
    	});
    	
    })();