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 ASP.NET Core/Pages/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@


//Documenteditor control rendering starts
var hostUrl = 'https://ej2services.syncfusion.com/production/web-services/';
var hostUrl = 'https://services.syncfusion.com/js/production/';
var container = new ej.documenteditor.DocumentEditorContainer({ height:'590px' });
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
container.serviceUrl = hostUrl + 'api/documenteditor/';
Expand Down
2 changes: 1 addition & 1 deletion Typescript/src/app/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { ListView, SelectEventArgs } from '@syncfusion/ej2-lists';
* Default document editor sample
*/
// tslint:disable:max-func-body-length
let hostUrl: string = 'https://ej2services.syncfusion.com/production/web-services/';
let hostUrl: string = 'https://services.syncfusion.com/js/production/';
let container: DocumentEditorContainer = new DocumentEditorContainer({enableToolbar: true, height: '590px'
});
DocumentEditorContainer.Inject(Toolbar);
Expand Down