2 <html lang=
"${LANG}" class=
"dark">
6 <title>QBT_TR(Edit web seed)QBT_TR[CONTEXT=HttpServer]
</title>
7 <link rel=
"stylesheet" href=
"css/style.css?v=${CACHEID}" type=
"text/css">
8 <script src=
"scripts/lib/MooTools-Core-1.6.0-compat-compressed.js"></script>
9 <script src=
"scripts/lib/MooTools-More-1.6.0-compat-compressed.js"></script>
10 <script src=
"scripts/localpreferences.js?v=${CACHEID}"></script>
11 <script src=
"scripts/color-scheme.js?v=${CACHEID}"></script>
15 window
.addEventListener("DOMContentLoaded", () => {
16 window
.addEventListener("keydown", (event
) => {
19 event
.preventDefault();
20 $("editWebSeedButton").click();
23 event
.preventDefault();
24 window
.parent
.qBittorrent
.Client
.closeFrameWindow(window
);
29 const origUrl
= new URI().getData("url");
30 $("url").value
= decodeURIComponent(origUrl
);
33 $("editWebSeedButton").addEventListener("click", (e
) => {
36 fetch("api/v2/torrents/editWebSeed", {
38 body
: new URLSearchParams({
39 hash
: new URI().getData("hash"),
41 newUrl
: encodeURIComponent($("url").value
.trim())
48 window
.parent
.qBittorrent
.Client
.closeFrameWindow(window
);
56 <div style=
"text-align: center;">
58 <label for=
"url">QBT_TR(Web seed URL:)QBT_TR[CONTEXT=PropertiesWidget]
</label>
59 <div style=
"text-align: center; padding-top: 10px;">
60 <input type=
"text" id=
"url" style=
"width: 90%;">
63 <input type=
"button" value=
"QBT_TR(Edit)QBT_TR[CONTEXT=HttpServer]" id=
"editWebSeedButton">