Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Angular/src/app/app.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down
2 changes: 1 addition & 1 deletion Javascript(ES5)/Documenteditor.html
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion Javascript/src/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion React/src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion Vue/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down