BUGFIX: Fix global download rate limiting from Web UI

This commit is contained in:
Christophe Dumez
2009-12-30 16:38:46 +00:00
parent d227ed8b59
commit ec44efb261
2 changed files with 2 additions and 1 deletions

View File

@@ -120,7 +120,7 @@ applyPreferences = function() {
updateDlLimitEnabled = function() {
if($defined($('dl_limit_checkbox').get('checked')) && $('dl_limit_checkbox').get('checked')) {
$('dl_limit_value').set('disabled', 'false');
$('dl_limit_value').removeProperty('disabled');
} else {
$('dl_limit_value').set('disabled', 'true');
}