mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2024-12-17 21:41:49 +03: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();
|
||
|
});
|
||
|
});
|