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
1 changed files with 2 additions and 1 deletions

View File

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