Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2014-02-05 14:33:43 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2014-02-05 14:33:43 +0400
commit0992a77cfb683fcbe1bbf47ce7f1d7d6db465a8b (patch)
treeb9cc727c58290a557bae3be11f595ffd0ba84535 /apps/files
parent4b1f93b61c084f507035fc89e86c0dca69242bbf (diff)
permanently show download action on mobile, only icon
Diffstat (limited to 'apps/files')
-rw-r--r--apps/files/js/fileactions.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/files/js/fileactions.js b/apps/files/js/fileactions.js
index 74bb711ef3d..9fea7f5145e 100644
--- a/apps/files/js/fileactions.js
+++ b/apps/files/js/fileactions.js
@@ -103,9 +103,9 @@ var FileActions = {
}
var html = '<a href="#" class="action" data-action="' + name + '">';
if (img) {
- html += '<img class ="svg" src="' + img + '" /> ';
+ html += '<img class ="svg" src="' + img + '" />';
}
- html += t('files', name) + '</a>';
+ html += '<span> ' + t('files', name) + '</span></a>';
var element = $(html);
element.data('action', name);