Add the uid on hover for sharing autocomplete

This commit is contained in:
Joas Schilling 2016-02-24 09:57:02 +01:00
parent 0d715c1184
commit edbc1060ce

View file

@ -221,7 +221,7 @@
.tooltip('hide') .tooltip('hide')
.tooltip({ .tooltip({
placement: 'bottom', placement: 'bottom',
trigger: 'manual', trigger: 'manual'
}) })
.tooltip('fixTitle') .tooltip('fixTitle')
.tooltip('show'); .tooltip('show');
@ -259,6 +259,7 @@
} }
} }
insert.text(text); insert.text(text);
insert.attr('title', item.value.shareWith);
if(item.value.shareType === OC.Share.SHARE_TYPE_GROUP) { if(item.value.shareType === OC.Share.SHARE_TYPE_GROUP) {
insert = insert.wrapInner('<strong></strong>'); insert = insert.wrapInner('<strong></strong>');
} }