Skip to content

Commit

Permalink
Fix #933
Browse files Browse the repository at this point in the history
  • Loading branch information
tbar0970 committed Aug 28, 2023
1 parent 343bb7a commit 1d69db5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/jethro.js
Original file line number Diff line number Diff line change
Expand Up @@ -1317,7 +1317,7 @@ JethroRoster.init = function() {
// This applies to read-only rosters
$('table.roster [data-personid]').on('mouseover', function() {
var personid = $(this).attr('data-personid');
var others = $(this).parents('.roster').find('a[data-personid='+personid+'], span[data-personid='+personid+']');
var others = $(this).parents('.roster').find('td a[data-personid='+personid+'], td span[data-personid='+personid+']');
if (others.length > 1) {
others.addClass('rosteree-highlighted');
}
Expand Down

0 comments on commit 1d69db5

Please sign in to comment.