summaryrefslogtreecommitdiffstats
path: root/core/js
diff options
context:
space:
mode:
authorMichael Gapczynski <mtgap@owncloud.com>2012-08-24 11:25:20 -0400
committerMichael Gapczynski <mtgap@owncloud.com>2012-08-24 15:12:16 -0400
commit7168fa4b05db038e24c649dad5a60cfe2230c476 (patch)
tree106ca6abc13f3db5e93c16227d3ddc9e1850afc9 /core/js
parentfedb3641f9cdd0358951e6b794f5d3cb6d6465cb (diff)
downloadnextcloud-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.js4
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 />';
}