mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2025-01-09 12:18:09 +08:00
Combine script tags
This commit is contained in:
parent
1afb3ff433
commit
67e0a2de44
@ -160,6 +160,8 @@
|
|||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
<div id="download_spinner" class="mochaSpinner"></div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@ -190,7 +192,6 @@
|
|||||||
window.parent.qBittorrent.Client.closeWindows();
|
window.parent.qBittorrent.Client.closeWindows();
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
<div id="download_spinner" class="mochaSpinner"></div>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -21,44 +21,43 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</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()" />
|
<input type="button" id="applyButton" value="QBT_TR(Apply)QBT_TR[CONTEXT=HttpServer]" onclick="setDlLimit()" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<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({
|
new Keyboard({
|
||||||
defaultEventType: 'keydown',
|
defaultEventType: 'keydown',
|
||||||
events: {
|
events: {
|
||||||
@ -81,7 +80,6 @@
|
|||||||
|
|
||||||
MochaUI.addDlLimitSlider(hashes);
|
MochaUI.addDlLimitSlider(hashes);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -147,6 +147,8 @@
|
|||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
<div id="upload_spinner" class="mochaSpinner"></div>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
@ -171,7 +173,6 @@
|
|||||||
$('fileselect').accept = ".torrent";
|
$('fileselect').accept = ".torrent";
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
<div id="upload_spinner" class="mochaSpinner"></div>
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
@ -21,44 +21,43 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="clear"></div>
|
<div class="clear"></div>
|
||||||
</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()" />
|
<input type="button" id="applyButton" value="QBT_TR(Apply)QBT_TR[CONTEXT=HttpServer]" onclick="setUpLimit()" />
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script>
|
<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({
|
new Keyboard({
|
||||||
defaultEventType: 'keydown',
|
defaultEventType: 'keydown',
|
||||||
events: {
|
events: {
|
||||||
@ -81,7 +80,6 @@
|
|||||||
|
|
||||||
MochaUI.addUpLimitSlider(hashes);
|
MochaUI.addUpLimitSlider(hashes);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user