Remove 'unviewed' status in watch table when Diff link clicked (#514)
parent
8f40f19328
commit
ffd2a89d60
File diff suppressed because one or more lines are too long
@ -0,0 +1,6 @@
|
||||
$(function () {
|
||||
// Remove unviewed status when normally clicked
|
||||
$('.diff-link').click(function () {
|
||||
$(this).closest('.unviewed').removeClass('unviewed');
|
||||
});
|
||||
});
|
Loading…
Reference in new issue