mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Add the uid on hover for sharing autocomplete
This commit is contained in:
parent
0d715c1184
commit
edbc1060ce
1 changed files with 2 additions and 1 deletions
|
|
@ -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>');
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue