web: highlight on mouse over sidebar links, not table cells

This commit is contained in:
Simon Michael 2011-06-29 23:44:36 +00:00
parent 26486b4fc6
commit 77133de9c6

View File

@ -9,7 +9,7 @@ $(document).ready(function() {
if ($.url.param('accounts')=='0') $('#accounts').hide();
/* set up sidebar account mouse-over handlers */
$('.balancereport td').mouseenter(function(){ $(this).addClass('mouseover'); });
$('.balancereport td a').mouseenter(function(){ $(this).parent().addClass('mouseover'); });
$('.balancereport td').mouseleave(function(){ $(this).removeClass('mouseover'); });
/* set up various show/hide toggles */