Indicate that the share owner is remote in the filelist
This commit is contained in:
parent
956de27e94
commit
3f8e850dc6
|
@ -203,6 +203,9 @@ OC.Share={
|
||||||
tooltip += '@' + userDomain;
|
tooltip += '@' + userDomain;
|
||||||
}
|
}
|
||||||
if (server) {
|
if (server) {
|
||||||
|
if (!userDomain) {
|
||||||
|
userDomain = '…';
|
||||||
|
}
|
||||||
tooltip += '@' + server;
|
tooltip += '@' + server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -702,17 +702,17 @@ describe('OC.Share tests', function() {
|
||||||
it('displays the user name part of a remote share owner', function() {
|
it('displays the user name part of a remote share owner', function() {
|
||||||
checkOwner(
|
checkOwner(
|
||||||
'User One@someserver.com',
|
'User One@someserver.com',
|
||||||
'User One',
|
'User One@…',
|
||||||
'User One@someserver.com'
|
'User One@someserver.com'
|
||||||
);
|
);
|
||||||
checkOwner(
|
checkOwner(
|
||||||
'User One@someserver.com/',
|
'User One@someserver.com/',
|
||||||
'User One',
|
'User One@…',
|
||||||
'User One@someserver.com'
|
'User One@someserver.com'
|
||||||
);
|
);
|
||||||
checkOwner(
|
checkOwner(
|
||||||
'User One@someserver.com/root/of/owncloud',
|
'User One@someserver.com/root/of/owncloud',
|
||||||
'User One',
|
'User One@…',
|
||||||
'User One@someserver.com'
|
'User One@someserver.com'
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue