mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2025-12-11 18:45:34 +00:00
7 lines
172 B
JavaScript
7 lines
172 B
JavaScript
$(function () {
|
|
// Remove unviewed status when normally clicked
|
|
$('.diff-link').click(function () {
|
|
$(this).closest('.unviewed').removeClass('unviewed');
|
|
});
|
|
});
|