summaryrefslogtreecommitdiffstats
path: root/apps/files/js/fileactions.js
diff options
context:
space:
mode:
authorJan-Christoph Borchardt <hey@jancborchardt.net>2014-01-29 09:17:02 -0800
committerJan-Christoph Borchardt <hey@jancborchardt.net>2014-01-29 09:17:02 -0800
commit271088a7a23ffcdb2082b6dfc5b6f50833612a0f (patch)
treea2d37b8187b262ab3267a35a83db82fc29ccb546 /apps/files/js/fileactions.js
parentafa00318bcabf53bed4f33633dae55c9efa43dd7 (diff)
parentedea7781b713cc136fede6dfe51b9abbf9a94cf0 (diff)
downloadnextcloud-server-271088a7a23ffcdb2082b6dfc5b6f50833612a0f.tar.gz
nextcloud-server-271088a7a23ffcdb2082b6dfc5b6f50833612a0f.zip
Merge pull request #6777 from owncloud/mobile-style
Mobile style for public links: files, folders, picture sets
Diffstat (limited to 'apps/files/js/fileactions.js')
-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 eb59e71a030..d0ef2491bdf 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);