2020-03-16 03:16:08 +05:30
|
|
|
var watched_data = JSON.parse(document.getElementById('watched_data').innerHTML);
|
|
|
|
|
2019-05-16 00:00:30 +05:30
|
|
|
function mark_watched(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tile.style.display = 'none';
|
|
|
|
|
|
|
|
var url = '/watch_ajax?action_mark_watched=1&redirect=false' +
|
|
|
|
'&id=' + target.getAttribute('data-id');
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
2019-06-16 23:04:00 +05:30
|
|
|
xhr.timeout = 10000;
|
2019-05-16 00:00:30 +05:30
|
|
|
xhr.open('POST', url, true);
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
|
|
|
if (xhr.readyState == 4) {
|
|
|
|
if (xhr.status != 200) {
|
|
|
|
tile.style.display = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-15 20:38:06 +05:30
|
|
|
|
|
|
|
xhr.send('csrf_token=' + watched_data.csrf_token);
|
2019-05-16 00:00:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
function mark_unwatched(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
2019-06-08 06:26:41 +05:30
|
|
|
tile.style.display = 'none';
|
2019-05-16 00:00:30 +05:30
|
|
|
var count = document.getElementById('count')
|
|
|
|
count.innerText = count.innerText - 1;
|
|
|
|
|
|
|
|
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
|
|
|
|
'&id=' + target.getAttribute('data-id');
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
2019-06-16 23:04:00 +05:30
|
|
|
xhr.timeout = 10000;
|
2019-05-16 00:00:30 +05:30
|
|
|
xhr.open('POST', url, true);
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
|
|
|
if (xhr.readyState == 4) {
|
|
|
|
if (xhr.status != 200) {
|
|
|
|
count.innerText = count.innerText - 1 + 2;
|
|
|
|
tile.style.display = '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2019-06-15 20:38:06 +05:30
|
|
|
|
|
|
|
xhr.send('csrf_token=' + watched_data.csrf_token);
|
2019-05-16 00:00:30 +05:30
|
|
|
}
|