Remove 'unviewed' status in watch table when Diff link clicked (#514)
This commit is contained in:
6
changedetectionio/static/js/watch-overview.js
Normal file
6
changedetectionio/static/js/watch-overview.js
Normal file
@@ -0,0 +1,6 @@
|
||||
$(function () {
|
||||
// Remove unviewed status when normally clicked
|
||||
$('.diff-link').click(function () {
|
||||
$(this).closest('.unviewed').removeClass('unviewed');
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user