Files
changedetection.io/changedetectionio/static/js/watch-overview.js

7 lines
172 B
JavaScript

$(function () {
// Remove unviewed status when normally clicked
$('.diff-link').click(function () {
$(this).closest('.unviewed').removeClass('unviewed');
});
});