mirror of
https://github.com/haiwen/seahub.git
synced 2025-10-20 10:20:42 +00:00
Merge branch '6.3'
This commit is contained in:
@@ -49,9 +49,6 @@ define([
|
||||
if (part_data.error_msg) {
|
||||
$('.error', $container).html(part_data.error_msg).show();
|
||||
} else {
|
||||
this.$('.dir-folder-counts').html(part_data.dir_count);
|
||||
this.$('.dir-file-counts').html(part_data.file_count);
|
||||
this.$('.dir-size').html(part_data.size);
|
||||
$('table', $container).show();
|
||||
}
|
||||
},
|
||||
|
@@ -192,7 +192,7 @@ define([
|
||||
data.jqXHR = popup.fileupload('send', data);
|
||||
|
||||
} else {
|
||||
var block_size = 1024 * 1024;
|
||||
var block_size = app.pageOptions.resumable_upload_file_block_size * 1024 * 1024;
|
||||
if (enable_resumable_fileupload &&
|
||||
file.size && file.size > block_size) {
|
||||
popup.fileupload('option', 'maxChunkSize', block_size);
|
||||
|
Reference in New Issue
Block a user