qBittorrent/src/webui/scripts/download.js
2008-05-17 12:44:42 +00:00

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();
});
});