removed whitespace

removed whitespace

Changed it based on PVince81's suggestion
这个提交包含在:
Erik Pellikka 2016-01-10 18:56:18 +02:00 提交者 Morris Jobke
父节点 cc4e4ecf0f
当前提交 ace66057f2

查看文件

@ -642,7 +642,13 @@
};
OCA.Files.FileActions.updateFileActionSpinner(downloadFileaction, true);
OCA.Files.Files.handleDownload(this.getDownloadUrl(files, dir, true), disableLoadingState);
if(this.getSelectedFiles().length > 1) {
OCA.Files.Files.handleDownload(this.getDownloadUrl(files, dir, true), disableLoadingState);
}
else {
first = this.getSelectedFiles()[0];
OCA.Files.Files.handleDownload(this.getDownloadUrl(first.name, dir, true), disableLoadingState);
}
return false;
},