Revision 378ce66b
Von Sven Schöling vor mehr als 3 Jahren hinzugefügt
js/kivi.File.js | ||
---|---|---|
99 | 99 |
} |
100 | 100 |
|
101 | 101 |
ns.allow_upload_submit = function() { |
102 |
$('#upload_selected_button').prop('disabled',$('#upload_files').val() === ''); |
|
102 |
const disable = $('#upload_files').val() === ''; |
|
103 |
$('#upload_selected_button').prop('disabled', disable) |
|
104 |
.toggleClass('disabled', disable); |
|
103 | 105 |
} |
104 | 106 |
|
105 | 107 |
ns.upload_status_dialog = function() { |
Auch abrufbar als: Unified diff
Mobile File: enable_file_upload toggle kann jetzt auch materialize