Skip to content

Commit

Permalink
fixed same minute display
Browse files Browse the repository at this point in the history
  • Loading branch information
oelna authored Nov 25, 2022
1 parent 245be62 commit 9c07660
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index-bubbles.html
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@
}
}

let line = '<div class="line '+side+' '+(isRecent ? 'recent' : '')+' '+(sameUser ? 'same-user' : '')+' '+(longAgo ? 'long-break' : '')+'" data-ts="'+user['tmi-sent-ts']+'">';
let line = '<div class="line '+side+' '+(isRecent ? 'recent' : '')+' '+(sameUser ? 'same-user' : '')+' '+(longAgo ? 'long-break' : '')+' '+(isSameMinute ? 'same-minute' : '')+'" data-ts="'+user['tmi-sent-ts']+'">';
line += '<div class="name">';
line += badges;
// line += '<span style="color:'+color+';">';
Expand Down

0 comments on commit 9c07660

Please sign in to comment.