fix compilation errors with latest TS/TSLint (#1651)

latest TS/TSLint libs detect couple of problems related to private apis
used earlier; changing to public in order to fix compilation
This commit is contained in:
Denys Vuika
2017-02-23 15:46:58 +00:00
committed by Mario Romano
parent c35f948546
commit 3375a63680
4 changed files with 6 additions and 5 deletions

View File

@@ -156,7 +156,7 @@ export class UploadButtonComponent {
* @param path
* @param files
*/
private uploadFiles(path: string, files: any[]) {
uploadFiles(path: string, files: any[]) {
if (files.length) {
let latestFilesAdded = this.uploadService.addToQueue(files);
this.uploadService.uploadFilesInTheQueue(this.rootFolderId, path, this.onSuccess);