Fix fileList fallback in OC.Share for outside files app

OC.Share can be used in non-files apps, so the fileList callback needs
to support that as well.
This commit is contained in:
Vincent Petry 2014-05-28 16:34:00 +02:00
parent e084183d1e
commit 66afd1aa39
1 changed files with 10 additions and 3 deletions

View File

@ -37,9 +37,16 @@ OC.Share={
*/
updateIcons:function(itemType, fileList){
var item;
fileList = fileList || OCA.Files.App.fileList;
var $fileList = fileList.$fileList;
var currentDir = fileList.getCurrentDirectory();
var $fileList;
var currentDir;
if (!fileList && OCA.Files) {
fileList = OCA.Files.App.fileList;
}
// fileList is usually only defined in the files app
if (fileList) {
$fileList = fileList.$fileList;
currentDir = fileList.getCurrentDirectory();
}
for (item in OC.Share.statuses){
var image;
var data = OC.Share.statuses[item];