diff --git a/core/js/sharedialogshareelistview.js b/core/js/sharedialogshareelistview.js index e26421dcaedb9dad61c5a94c089798ce4508cf42..e8976bb26e6eb03b64f5a1bb1de9b9db2023c002 100644 --- a/core/js/sharedialogshareelistview.js +++ b/core/js/sharedialogshareelistview.js @@ -16,12 +16,12 @@ var TEMPLATE = '<ul id="shareWithList" class="shareWithList">' + '{{#each sharees}}' + - ' <li data-share-id="{{shareId}}" data-share-type="{{shareType}}" data-share-with="{{shareWith}}" title="{{shareWith}}">' + + ' <li data-share-id="{{shareId}}" data-share-type="{{shareType}}" data-share-with="{{shareWith}}">' + ' <a href="#" class="unshare"><span class="icon-loading-small hidden"></span><img class="svg" alt="{{unshareLabel}}" title="{{unshareLabel}}" src="{{unshareImage}}" /></a>' + ' {{#if avatarEnabled}}' + ' <div class="avatar {{#if modSeed}}imageplaceholderseed{{/if}}" data-username="{{shareWith}}" {{#if modSeed}}data-seed="{{shareWith}} {{shareType}}"{{/if}}></div>' + ' {{/if}}' + - ' <span class="username">{{shareWithDisplayName}}</span>' + + ' <span class="has-tooltip username" title="{{shareWith}}">{{shareWithDisplayName}}</span>' + ' {{#if mailNotificationEnabled}} {{#unless isRemoteShare}}' + ' <input id="mail-{{cid}}-{{shareWith}}" type="checkbox" name="mailNotification" class="mailNotification checkbox" {{#if wasMailSent}}checked="checked"{{/if}} />' + ' <label for="mail-{{cid}}-{{shareWith}}">{{notifyByMailLabel}}</label>' + @@ -193,6 +193,10 @@ }); } + this.$el.find('.has-tooltip').tooltip({ + placement: 'bottom' + }); + this.delegateEvents(); return this; diff --git a/core/js/sharedialogview.js b/core/js/sharedialogview.js index 5ca8116ec80db7c343b6d085f8f2f12fe0ec914b..5e1e14541c5f0da5117fa7c8aedc012c12ef8d80 100644 --- a/core/js/sharedialogview.js +++ b/core/js/sharedialogview.js @@ -263,6 +263,10 @@ if(item.value.shareType === OC.Share.SHARE_TYPE_GROUP) { insert = insert.wrapInner('<strong></strong>'); } + insert.tooltip({ + placement: 'bottom', + container: 'body' + }); return $("<li>") .addClass((item.value.shareType === OC.Share.SHARE_TYPE_GROUP) ? 'group' : 'user') .append(insert)