Merge pull request #9120 from owncloud/fileactions-filelistfallback

Fixed file actions fallback
This commit is contained in:
Morris Jobke 2014-06-21 11:28:11 +02:00
commit 436d022316
1 changed files with 3 additions and 1 deletions

View File

@ -133,6 +133,8 @@
display: function (parent, triggerEvent, fileList) {
if (!fileList) {
console.warn('FileActions.display() MUST be called with a OCA.Files.FileList instance');
// using default list instead, which could be wrong
fileList = OCA.Files.App.fileList;
}
this.currentFile = parent;
var self = this;
@ -162,7 +164,7 @@
event.data.actionFunc(file, {
$file: $tr,
fileList: fileList || OCA.Files.App.fileList,
fileList: fileList,
fileActions: self,
dir: $tr.attr('data-path') || fileList.getCurrentDirectory()
});