dist folder for uploader component

This commit is contained in:
Mario Romano
2016-05-19 16:23:13 +01:00
parent 283e214e94
commit c771c0a205
9 changed files with 34 additions and 18 deletions

View File

@@ -180,7 +180,7 @@ export class UploadButtonComponent {
* @returns {any}
*/
private getSiteId(): string {
return this.currentFolderPath.replace('/Sites/','').split('/')[0];
return this.currentFolderPath.replace('/Sites/', '').split('/')[0];
}
/**
@@ -188,6 +188,6 @@ export class UploadButtonComponent {
* @returns {any}
*/
private getContainerId(): string {
return this.currentFolderPath.replace('/Sites/','').split('/')[1];
return this.currentFolderPath.replace('/Sites/', '').split('/')[1];
}
}