aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files/js/templates
diff options
context:
space:
mode:
authorTomasz Grobelny <tomasz@grobelny.net>2018-11-13 23:19:08 +0100
committerTomasz Grobelny <tomasz@grobelny.net>2018-11-24 23:55:25 +0100
commit7bafa54ae168a25b47d579fdca4cec19f2e1534f (patch)
treee332089920c9c7c8a570f62120f0c53accd67125 /apps/files/js/templates
parente99340dc4da5f3a86ae32a14ef318b0d8b8f20fd (diff)
downloadnextcloud-server-7bafa54ae168a25b47d579fdca4cec19f2e1534f.tar.gz
nextcloud-server-7bafa54ae168a25b47d579fdca4cec19f2e1534f.zip
Fix progress bar label
Signed-off-by: Tomasz Grobelny <tomasz@grobelny.net>
Diffstat (limited to 'apps/files/js/templates')
-rw-r--r--apps/files/js/templates/operationprogressbar.handlebars2
-rw-r--r--apps/files/js/templates/operationprogressbarlabel.handlebars4
2 files changed, 5 insertions, 1 deletions
diff --git a/apps/files/js/templates/operationprogressbar.handlebars b/apps/files/js/templates/operationprogressbar.handlebars
index 5d6a7e860f0..c02ac623fab 100644
--- a/apps/files/js/templates/operationprogressbar.handlebars
+++ b/apps/files/js/templates/operationprogressbar.handlebars
@@ -1,5 +1,5 @@
<div id="uploadprogressbar">
- <em class="label outer" style="display:none"><span class="desktop">{{textDesktop}}</span><span class="mobile">{{textMobile}}</span></em>
+ <em class="label outer" style="display:none"></em>
</div>
<button class="stop icon-close" style="display:none">
<span class="hidden-visually">{{textCancelButton}}</span>
diff --git a/apps/files/js/templates/operationprogressbarlabel.handlebars b/apps/files/js/templates/operationprogressbarlabel.handlebars
new file mode 100644
index 00000000000..24ac66994da
--- /dev/null
+++ b/apps/files/js/templates/operationprogressbarlabel.handlebars
@@ -0,0 +1,4 @@
+<em class="label">
+ <span class="desktop">{{textDesktop}}</span>
+ <span class="mobile">{{textMobile}}</span>
+</em>