Merge pull request #2010 from nextcloud/downstream-26534

[oC] Fixed disappearing of share info in file view
This commit is contained in:
Joas Schilling 2016-11-04 13:29:19 +01:00 committed by GitHub
commit a77e7075f6
1 changed files with 6 additions and 1 deletions

View File

@ -71,6 +71,12 @@
var fileInfo = oldElementToFile.apply(this, arguments);
fileInfo.sharePermissions = $el.attr('data-share-permissions') || undefined;
fileInfo.shareOwner = $el.attr('data-share-owner') || undefined;
if( $el.attr('data-share-types')){
var shareTypes = $el.attr('data-share-types').split(',');
fileInfo.shareTypes = shareTypes;
}
return fileInfo;
};
@ -247,4 +253,3 @@
})();
OC.Plugins.register('OCA.Files.FileList', OCA.Sharing.Util);