diff --git a/Angular/src/app/app.component.ts b/Angular/src/app/app.component.ts index 9302a96..c43f453 100644 --- a/Angular/src/app/app.component.ts +++ b/Angular/src/app/app.component.ts @@ -15,7 +15,7 @@ export class AppComponent { public serviceLink: string; titleBar: TitleBar; constructor() { - this.serviceLink = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/'; + this.serviceLink = 'https://services.syncfusion.com/angular/production/api/documenteditor/'; } onCreate(): void { let titleBarElement: HTMLElement = document.getElementById('default_title_bar'); diff --git a/Javascript(ES5)/Documenteditor.html b/Javascript(ES5)/Documenteditor.html index ef8eaae..d091ea9 100644 --- a/Javascript(ES5)/Documenteditor.html +++ b/Javascript(ES5)/Documenteditor.html @@ -42,7 +42,7 @@ // Initialize DocumentEditorContainer component. var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' }); ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar); - documenteditorContainer.serviceUrl = 'https:/ej2services.syncfusion.com/production/web-services/api/documenteditor/'; + documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/'; //To detect the device var isMobileDevice = /Android|Windows Phone|webOS/i.test(navigator.userAgent); diff --git a/Javascript/src/app/app.ts b/Javascript/src/app/app.ts index cca148d..e67dd82 100644 --- a/Javascript/src/app/app.ts +++ b/Javascript/src/app/app.ts @@ -5,7 +5,7 @@ DocumentEditorContainer.Inject(Toolbar); let container: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px' }); -container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/'; +container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/'; //To detect the device let isMobileDevice: boolean = /Android|Windows Phone|webOS/i.test(navigator.userAgent); diff --git a/React/src/App.js b/React/src/App.js index 9c91eb8..14cf36c 100644 --- a/React/src/App.js +++ b/React/src/App.js @@ -6,7 +6,7 @@ import * as ReactDOM from 'react-dom'; DocumentEditorContainerComponent.Inject(Toolbar); class App extends Component { - hosturl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/'; + hosturl = 'https://services.syncfusion.com/react/production/api/documenteditor/'; container; onDocumentChange() { let proxy = this; diff --git a/Vue/src/App.vue b/Vue/src/App.vue index fba417e..adbaa9f 100644 --- a/Vue/src/App.vue +++ b/Vue/src/App.vue @@ -11,7 +11,7 @@ Vue.use(DocumentEditorContainerPlugin); export default { data(){ - return { serviceUrl:'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' } + return { serviceUrl:'https://services.syncfusion.com/vue/production/api/documenteditor/' } }, provide: { //Inject require modules.