Merge pull request #2460 from nextcloud/stable10-2010

[stable10] Fixed disappearing of share info in file view
This commit is contained in:
Morris Jobke 2016-12-02 10:39:55 +01:00 committed by GitHub
commit 8f8250caf4
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;
};
@ -246,4 +252,3 @@
})();
OC.Plugins.register('OCA.Files.FileList', OCA.Sharing.Util);