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

cross-platform-path-fixes
dgtlmoon 2025-06-11 12:12:48 +02:00
rodzic 8f1a6feb90
commit 99ca8787ab
1 zmienionych plików z 6 dodań i 0 usunięć

Wyświetl plik

@ -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();