diff --git a/src/webui/www/private/download.html b/src/webui/www/private/download.html index 6073cce8d..a2312ddc8 100644 --- a/src/webui/www/private/download.html +++ b/src/webui/www/private/download.html @@ -38,7 +38,7 @@
- +
@@ -84,7 +84,7 @@ }); $('start_torrent').addEventListener('change', function() { - $('add_paused').disabled = $('start_torrent').checked; + $('add_paused').value = !$('start_torrent').checked; });
diff --git a/src/webui/www/private/upload.html b/src/webui/www/private/upload.html index 6b71cff90..ba07e781d 100644 --- a/src/webui/www/private/upload.html +++ b/src/webui/www/private/upload.html @@ -32,7 +32,7 @@
- +
@@ -77,7 +77,7 @@ }); $('start_torrent').addEventListener('change', function() { - $('add_paused').disabled = $('start_torrent').checked; + $('add_paused').value = !$('start_torrent').checked; });