diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-24 11:25:20 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-08-24 15:12:16 -0400 |
commit | 7168fa4b05db038e24c649dad5a60cfe2230c476 (patch) | |
tree | 106ca6abc13f3db5e93c16227d3ddc9e1850afc9 /core/js | |
parent | fedb3641f9cdd0358951e6b794f5d3cb6d6465cb (diff) | |
download | nextcloud-server-7168fa4b05db038e24c649dad5a60cfe2230c476.tar.gz nextcloud-server-7168fa4b05db038e24c649dad5a60cfe2230c476.zip |
Add padding to the reshared text
Diffstat (limited to 'core/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 b246849b479..bd1fa14d3f5 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -95,9 +95,9 @@ OC.Share={ var html = '<div id="dropdown" class="drop" data-item-type="'+itemType+'" data-item-source="'+itemSource+'">'; if (data.reshare) { if (data.reshare.share_type == OC.Share.SHARE_TYPE_GROUP) { - html += 'Shared with you and the group '+data.reshare.share_with+' by '+data.reshare.uid_owner; + html += '<span class="reshare">Shared with you and the group '+data.reshare.share_with+' by '+data.reshare.uid_owner+'</span>'; } else { - html += 'Shared with you by '+data.reshare.uid_owner; + html += '<span class="reshare">Shared with you by '+data.reshare.uid_owner+'</span>'; } html += '<br />'; } |