mirror of
https://github.com/Carve/qbittorrent-webui-cjratliff.com.git
synced 2024-11-15 03:07:38 +01:00
57 lines
2.1 KiB
HTML
57 lines
2.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="${LANG}">
|
|
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Deletion confirmation</title>
|
|
<link rel="stylesheet" href="css/style.css?v=${CACHEID}" type="text/css" />
|
|
<link rel="stylesheet" type="text/css" href="css/Core.css?v=${CACHEID}" />
|
|
<script src="scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
|
|
<script src="scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
|
|
<script>
|
|
'use strict';
|
|
|
|
window.addEvent('domready', () => {
|
|
const paths = new URI().getData('paths').split('|');
|
|
$('cancelBtn').focus();
|
|
$('cancelBtn').addEvent('click', (e) => {
|
|
new Event(e).stop();
|
|
window.parent.closeWindows();
|
|
});
|
|
$('confirmBtn').addEvent('click', (e) => {
|
|
new Event(e).stop();
|
|
let completionCount = 0;
|
|
paths.forEach((path) => {
|
|
new Request({
|
|
url: 'api/v2/rss/removeItem',
|
|
noCache: true,
|
|
method: 'post',
|
|
data: {
|
|
path: decodeURIComponent(path)
|
|
},
|
|
onComplete: (response) => {
|
|
++completionCount;
|
|
if (completionCount === paths.length) {
|
|
window.parent.qBittorrent.Rss.updateRssFeedList();
|
|
window.parent.closeWindows();
|
|
}
|
|
}
|
|
}).send();
|
|
});
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
<div style="padding: 1px 10px 0px 1px;">
|
|
<p>Are you sure you want to delete the selected RSS feeds?</p>
|
|
<div style="text-align: right;">
|
|
<input style="padding: 2px 2px;" class="button" type="button" id="cancelBtn" value="No" />
|
|
<input style="padding: 2px 2px;" class="button" type="button" id="confirmBtn" value="Yes" />
|
|
</div>
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|