mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-09 04:08:16 +08:00
Combine script tags
This commit is contained in:
parent
1afb3ff433
commit
67e0a2de44
@ -160,6 +160,8 @@
|
||||
</fieldset>
|
||||
</div>
|
||||
</form>
|
||||
<div id="download_spinner" class="mochaSpinner"></div>
|
||||
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
@ -190,7 +192,6 @@
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
});
|
||||
</script>
|
||||
<div id="download_spinner" class="mochaSpinner"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -21,44 +21,43 @@
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
const hashes = new URI().getData('hashes').split('|');
|
||||
const setDlLimit = function() {
|
||||
const limit = $("dllimitUpdatevalue").value.toInt() * 1024;
|
||||
if (hashes[0] == "global") {
|
||||
new Request({
|
||||
url: 'api/v2/transfer/setDownloadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.updateMainData();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
else {
|
||||
new Request({
|
||||
url: 'api/v2/torrents/setDownloadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'hashes': hashes.join('|'),
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<input type="button" id="applyButton" value="QBT_TR(Apply)QBT_TR[CONTEXT=HttpServer]" onclick="setDlLimit()" />
|
||||
</div>
|
||||
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
const hashes = new URI().getData('hashes').split('|');
|
||||
const setDlLimit = function() {
|
||||
const limit = $("dllimitUpdatevalue").value.toInt() * 1024;
|
||||
if (hashes[0] == "global") {
|
||||
new Request({
|
||||
url: 'api/v2/transfer/setDownloadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.updateMainData();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
else {
|
||||
new Request({
|
||||
url: 'api/v2/torrents/setDownloadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'hashes': hashes.join('|'),
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
};
|
||||
|
||||
new Keyboard({
|
||||
defaultEventType: 'keydown',
|
||||
events: {
|
||||
@ -81,7 +80,6 @@
|
||||
|
||||
MochaUI.addDlLimitSlider(hashes);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -147,6 +147,8 @@
|
||||
</div>
|
||||
</fieldset>
|
||||
</form>
|
||||
<div id="upload_spinner" class="mochaSpinner"></div>
|
||||
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
@ -171,7 +173,6 @@
|
||||
$('fileselect').accept = ".torrent";
|
||||
}
|
||||
</script>
|
||||
<div id="upload_spinner" class="mochaSpinner"></div>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
@ -21,44 +21,43 @@
|
||||
</div>
|
||||
<div class="clear"></div>
|
||||
</div>
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
const hashes = new URI().getData('hashes').split('|');
|
||||
const setUpLimit = function() {
|
||||
const limit = $("uplimitUpdatevalue").value.toInt() * 1024;
|
||||
if (hashes[0] == "global") {
|
||||
new Request({
|
||||
url: 'api/v2/transfer/setUploadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.updateMainData();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
else {
|
||||
new Request({
|
||||
url: 'api/v2/torrents/setUploadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'hashes': hashes.join('|'),
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
};
|
||||
</script>
|
||||
<input type="button" id="applyButton" value="QBT_TR(Apply)QBT_TR[CONTEXT=HttpServer]" onclick="setUpLimit()" />
|
||||
</div>
|
||||
|
||||
<script>
|
||||
'use strict';
|
||||
|
||||
const hashes = new URI().getData('hashes').split('|');
|
||||
const setUpLimit = function() {
|
||||
const limit = $("uplimitUpdatevalue").value.toInt() * 1024;
|
||||
if (hashes[0] == "global") {
|
||||
new Request({
|
||||
url: 'api/v2/transfer/setUploadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.updateMainData();
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
else {
|
||||
new Request({
|
||||
url: 'api/v2/torrents/setUploadLimit',
|
||||
method: 'post',
|
||||
data: {
|
||||
'hashes': hashes.join('|'),
|
||||
'limit': limit
|
||||
},
|
||||
onComplete: function() {
|
||||
window.parent.qBittorrent.Client.closeWindows();
|
||||
}
|
||||
}).send();
|
||||
}
|
||||
};
|
||||
|
||||
new Keyboard({
|
||||
defaultEventType: 'keydown',
|
||||
events: {
|
||||
@ -81,7 +80,6 @@
|
||||
|
||||
MochaUI.addUpLimitSlider(hashes);
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
|
Loading…
Reference in New Issue
Block a user