diff --git a/ng2-components/ng2-alfresco-upload/README.md b/ng2-components/ng2-alfresco-upload/README.md index 8a1cf2d28d..dacea2959a 100644 --- a/ng2-components/ng2-alfresco-upload/README.md +++ b/ng2-components/ng2-alfresco-upload/README.md @@ -48,9 +48,8 @@ Make sure your systemjs.config has the following configuration: System.config({ defaultJSExtensions: true, map: { - 'ng2-alfresco-core': 'node_modules/ng2-alfresco-core/dist', + 'ng2-alfresco-core': 'node_modules/ng2-alfresco-core', 'ng2-alfresco-upload': 'node_modules/ng2-alfresco-upload', - 'ng2-translate': 'node_modules/ng2-translate', 'rxjs': 'node_modules/rxjs', 'angular2' : 'node_modules/angular2', 'app': 'dist/src' @@ -65,9 +64,6 @@ Make sure your systemjs.config has the following configuration: 'ng2-alfresco-upload': { defaultExtension: 'js' }, - 'ng2-translate': { - defaultExtension: 'js' - }, 'rxjs': { defaultExtension: 'js' }, @@ -97,7 +93,7 @@ Example of an App that declares upload button component : import { Component } from 'angular2/core'; import { bootstrap } from 'angular2/platform/browser'; import { HTTP_PROVIDERS } from 'angular2/http'; -import { AlfrescoSettingsService, AlfrescoTranslationService, AlfrescoTranslationLoader } from 'ng2-alfresco-core/services'; +import { AlfrescoSettingsService, AlfrescoTranslationService, AlfrescoTranslationLoader } from 'ng2-alfresco-core/dist/ng2-alfresco-core'; import { ALFRESCO_ULPOAD_COMPONENTS, UploadService } from 'ng2-alfresco-upload/dist/ng2-alfresco-upload'; @@ -156,7 +152,7 @@ Example of an App that declares upload drag and drop component : import { Component } from 'angular2/core'; import { bootstrap } from 'angular2/platform/browser'; import { HTTP_PROVIDERS } from 'angular2/http'; -import { AlfrescoSettingsService, AlfrescoTranslationService, AlfrescoTranslationLoader } from 'ng2-alfresco-core/services'; +import { AlfrescoSettingsService, AlfrescoTranslationService, AlfrescoTranslationLoader } from 'ng2-alfresco-core/dist/ng2-alfresco-core'; import { ALFRESCO_ULPOAD_COMPONENTS, UploadService } from 'ng2-alfresco-upload/dist/ng2-alfresco-upload'; diff --git a/ng2-components/ng2-alfresco-upload/demo/index.html b/ng2-components/ng2-alfresco-upload/demo/index.html index a34e472ca0..f6bc1c8bd5 100644 --- a/ng2-components/ng2-alfresco-upload/demo/index.html +++ b/ng2-components/ng2-alfresco-upload/demo/index.html @@ -29,7 +29,6 @@ map: { 'ng2-alfresco-core': 'node_modules/ng2-alfresco-core', 'ng2-alfresco-upload': 'node_modules/ng2-alfresco-upload', - 'ng2-translate': 'node_modules/ng2-translate', 'rxjs': 'node_modules/rxjs', 'angular2' : 'node_modules/angular2', 'app': 'dist/src' @@ -44,9 +43,6 @@ 'ng2-alfresco-upload': { defaultExtension: 'js' }, - 'ng2-translate': { - defaultExtension: 'js' - }, 'rxjs': { defaultExtension: 'js' }, diff --git a/ng2-components/ng2-alfresco-upload/demo/package.json b/ng2-components/ng2-alfresco-upload/demo/package.json index 2292039dd1..e4d3b6cb18 100644 --- a/ng2-components/ng2-alfresco-upload/demo/package.json +++ b/ng2-components/ng2-alfresco-upload/demo/package.json @@ -21,7 +21,6 @@ "material-design-lite": "^1.1.3", "ng2-alfresco-core": "^0.1.6", "ng2-alfresco-upload": "^0.1.0", - "ng2-translate": "^1.11.2", "reflect-metadata": "0.1.2", "rxjs": "5.0.0-beta.2", "zone.js": "0.6.6"