UI - Always unset 'unviewed' state when '[History]' button is pressed from watch overview list #3243

This commit is contained in:
dgtlmoon
2025-06-11 12:12:48 +02:00
parent 8f1a6feb90
commit 99ca8787ab

View File

@@ -16,6 +16,12 @@ $(function () {
$('#op_extradata').val(prompt("Enter a tag name"));
});
$('.history-link').click(function (e) {
// Incase they click 'back' in the browser, it should be removed.
$(this).closest('tr').removeClass('unviewed');
});
$('.with-share-link > *').click(function () {
$("#copied-clipboard").remove();