mirror of
https://github.com/iv-org/invidious.git
synced 2025-05-02 06:26:27 -04:00
semicolons
This commit is contained in:
parent
eb7e48b059
commit
c72d3c4a0e
9 changed files with 73 additions and 73 deletions
|
@ -19,7 +19,7 @@ function mark_watched(target) {
|
|||
tile.style.display = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
xhr.send('csrf_token=' + watched_data.csrf_token);
|
||||
}
|
||||
|
@ -27,7 +27,7 @@ function mark_watched(target) {
|
|||
function mark_unwatched(target) {
|
||||
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
||||
tile.style.display = 'none';
|
||||
var count = document.getElementById('count')
|
||||
var count = document.getElementById('count');
|
||||
count.innerText = count.innerText - 1;
|
||||
|
||||
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
|
||||
|
@ -45,7 +45,7 @@ function mark_unwatched(target) {
|
|||
tile.style.display = '';
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
xhr.send('csrf_token=' + watched_data.csrf_token);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue