diff options
author | Christopher Mueller <chrinimue@posteo.me> | 2020-03-31 10:56:59 +0000 |
---|---|---|
committer | Christopher Mueller <chrinimue@posteo.me> | 2020-03-31 10:56:59 +0000 |
commit | b69d76feeedc27a5753ccb6363f666ba9ec121aa (patch) | |
tree | 94197f194178eb9b05175956c63ab907be910a2d /apps/files_sharing/js | |
parent | dc9df2b7ab908539c3f793108c1c49b764e446f3 (diff) | |
download | nextcloud-server-b69d76feeedc27a5753ccb6363f666ba9ec121aa.tar.gz nextcloud-server-b69d76feeedc27a5753ccb6363f666ba9ec121aa.zip |
Add basic progressbar to public upload page
Signed-off-by: Christopher Mueller <chrinimue@posteo.me>
Diffstat (limited to 'apps/files_sharing/js')
-rw-r--r-- | apps/files_sharing/js/files_drop.js | 2 | ||||
-rw-r--r-- | apps/files_sharing/js/templates/files_drop.handlebars | 3 |
2 files changed, 4 insertions, 1 deletions
diff --git a/apps/files_sharing/js/files_drop.js b/apps/files_sharing/js/files_drop.js index 26bb04a001a..c3af5c22062 100644 --- a/apps/files_sharing/js/files_drop.js +++ b/apps/files_sharing/js/files_drop.js @@ -120,9 +120,11 @@ if(progress === 100) { $('#drop-upload-done-indicator').removeClass('hidden'); $('#drop-upload-progress-indicator').addClass('hidden'); + $('#drop-upload-progress-bar').val(100); } else { $('#drop-upload-done-indicator').addClass('hidden'); $('#drop-upload-progress-indicator').removeClass('hidden'); + $('#drop-upload-progress-bar').val(progress); } } }); diff --git a/apps/files_sharing/js/templates/files_drop.handlebars b/apps/files_sharing/js/templates/files_drop.handlebars index b090e829793..d4cc3e85b91 100644 --- a/apps/files_sharing/js/templates/files_drop.handlebars +++ b/apps/files_sharing/js/templates/files_drop.handlebars @@ -1,6 +1,7 @@ <li data-toggle="tooltip" title="{{name}}" data-name="{{name}}"> {{#if isUploading}} - <span class="icon-loading-small"></span> {{name}} + <small>{{name}}</small><a id="status"></a> + <progress id="drop-upload-progress-bar" value="0" max="100"></progress> {{else}} <img src="{{iconSrc}}"/> {{name}} {{/if}} |