Remove 'unviewed' status in watch table when Diff link clicked (#514)

This commit is contained in:
dgtlmoon
2022-03-31 11:01:07 +02:00
committed by GitHub
parent 8f40f19328
commit ffd2a89d60
3 changed files with 11 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
$(function () {
// Remove unviewed status when normally clicked
$('.diff-link').click(function () {
$(this).closest('.unviewed').removeClass('unviewed');
});
});