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