1
0
şunun yansıması https://github.com/nextcloud/server.git eşitlendi 2024-08-27 05:55:24 +02:00
removed whitespace

removed whitespace

Changed it based on PVince81's suggestion
Bu işleme şunda yer alıyor:
Erik Pellikka 2016-01-10 18:56:18 +02:00 işlemeyi yapan: Morris Jobke
ebeveyn cc4e4ecf0f
işleme ace66057f2

Dosyayı Görüntüle

@ -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;
},