diff options
author | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-26 10:27:55 +0200 |
---|---|---|
committer | Jan-Christoph Borchardt <hey@jancborchardt.net> | 2015-08-26 10:27:55 +0200 |
commit | 898243a5ee9a4922a17934419717816a6dd427a0 (patch) | |
tree | b5eacc039227195f43de28826166c9983fbfb658 /core/js/share.js | |
parent | 6cbb56ac5fb3a1ad0477465ec5708ebd7f6901b5 (diff) | |
download | nextcloud-server-898243a5ee9a4922a17934419717816a6dd427a0.tar.gz nextcloud-server-898243a5ee9a4922a17934419717816a6dd427a0.zip |
fix share icons of shared items being placed off on mobile
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/js/share.js b/core/js/share.js index 7e0d0b7a2d3..cd4a614e9d1 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -127,7 +127,7 @@ OC.Share={ if (img.attr('src') !== OC.imagePath('core', 'actions/public')) { img.attr('src', image); $(actions[i]).addClass('permanent'); - $(actions[i]).html(' <span>'+t('core', 'Shared')+'</span>').prepend(img); + $(actions[i]).html('<span> '+t('core', 'Shared')+'</span>').prepend(img); } } for(i = 0; i < files.length; i++) { @@ -276,7 +276,7 @@ OC.Share={ else if (recipients) { message = t('core', 'Shared with {recipients}', {recipients: this._formatShareList(recipients.split(", ")).join(", ")}, 0, {escape: false}); } - action.html(' <span>' + message + '</span>').prepend(img); + action.html('<span> ' + message + '</span>').prepend(img); if (owner || recipients) { action.find('.remoteAddress').tipsy({gravity: 's'}); } |