mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-16 01:30:09 +00:00
11 lines
386 B
JavaScript
11 lines
386 B
JavaScript
|
window.addEvent('domready', function(){
|
||
|
$('downButton').addEvent('click', function(e){
|
||
|
new Event(e).stop();
|
||
|
new Ajax('/command/download', {method: 'post', data: {urls: $('urls').value},
|
||
|
onComplete: function() {
|
||
|
window.parent.document.getElementById('downloadPage').parentNode.removeChild(window.parent.document.getElementById('downloadPage'));
|
||
|
}
|
||
|
}).request();
|
||
|
});
|
||
|
});
|