mirror of
https://github.com/simonmichael/hledger.git
synced 2024-12-28 21:02:04 +03:00
web: highlight on mouse over sidebar links, not table cells
This commit is contained in:
parent
26486b4fc6
commit
77133de9c6
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user