Skip to content

Commit 5dd24c4

Browse files
Merge pull request #155 from Syncfusion-Content/hotfix/hotfix-v23.2.4
DOCINFRA-2341_merged_using_automation
2 parents 69d2f71 + f94b97b commit 5dd24c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+79
-78
lines changed

ej2-javascript/code-snippet/document-editor/chart-cs1/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-javascript/code-snippet/document-editor/customize-context-menu-cs1/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ var positionCheckBoxObj = new ej.buttons.CheckBox({ label: 'Add Custom option a
66
positionCheckBoxObj.appendTo('#position-context-menu');
77

88
var editor = new ej.documenteditor.DocumentEditor({
9-
isReadOnly: false
9+
isReadOnly: false,
10+
serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
1011
});
1112
editor.enableAllModules();
1213
editor.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/customize-context-menu-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ positionCheckBoxObj.appendTo('#position-context-menu');
1111

1212
//Initialize Document Editor component.
1313
let documentEditor: DocumentEditor = new DocumentEditor({
14-
isReadOnly: false, height: '370px'
14+
isReadOnly: false, height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
1515
});
1616

1717
//Enable all built in modules.

ej2-javascript/code-snippet/document-editor/data-protection-cs1/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-javascript/code-snippet/document-editor/data-protection-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DocumentEditorContainer.Inject(Toolbar);
66
let container: DocumentEditorContainer = new DocumentEditorContainer({
77
enableToolbar: true, height: '590px'
88
});
9-
container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
9+
container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
1010
container.appendTo('#DocumentEditor');
1111
container.documentEditor.currentUser = 'engineer@mycompany.com';
1212

ej2-javascript/code-snippet/document-editor/data-protection-cs2/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-javascript/code-snippet/document-editor/data-protection-cs2/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DocumentEditorContainer.Inject(Toolbar);
66
let container: DocumentEditorContainer = new DocumentEditorContainer({
77
enableToolbar: true, height: '590px'
88
});
9-
container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
9+
container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
1010
container.appendTo('#DocumentEditor');
1111
container.documentEditor.currentUser = 'engineer@mycompany.com';
1212

ej2-javascript/code-snippet/document-editor/es5-getting-started-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<div id='DocumentEditor' style='height:350px'></div>
4444
<script>
4545
// Initialize DocumentEditor component.
46-
var documenteditor = new ej.documenteditor.DocumentEditor({ height: '370px', isReadOnly: false });
46+
var documenteditor = new ej.documenteditor.DocumentEditor({ height: '370px', isReadOnly: false, serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
4747

4848
documenteditor.acceptTab = true;
4949
//Enable all the build in modules.

ej2-javascript/code-snippet/document-editor/es5-getting-started-cs1/js/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
<div id='DocumentEditor' style='height:350px'></div>
4343
<script>
4444
// Initialize DocumentEditor component.
45-
var documenteditor = new ej.documenteditor.DocumentEditor({ height: '370px', isReadOnly: false });
45+
var documenteditor = new ej.documenteditor.DocumentEditor({ height: '370px', isReadOnly: false, serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
4646

4747
documenteditor.acceptTab = true;
4848
//Enable all the build in modules.

ej2-javascript/code-snippet/document-editor/es5-getting-started-cs2/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
// Initialize DocumentEditorContainer component.
4949
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' });
5050
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
51-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
51+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
5252
//DocumentEditorContainer control rendering starts
5353
documenteditorContainer.appendTo('#DocumentEditor');
5454
</script>

ej2-javascript/code-snippet/document-editor/es5-getting-started-cs2/js/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
// Initialize DocumentEditorContainer component.
4949
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' });
5050
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
51-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
51+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
5252
//DocumentEditorContainer control rendering starts
5353
documenteditorContainer.appendTo('#DocumentEditor');
5454
</script>

ej2-javascript/code-snippet/document-editor/getting-started-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
44

55
// Initialize Document Editor component.
6-
let documenteditor: DocumentEditor = new DocumentEditor({ isReadOnly: false, height: '370px', serviceUrl: 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' });
6+
let documenteditor: DocumentEditor = new DocumentEditor({ isReadOnly: false, height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
77

88
// Enable all built in modules.
99
documenteditor.enableAllModules();

ej2-javascript/code-snippet/document-editor/getting-started-cs2/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor
66
DocumentEditorContainer.Inject(Toolbar);
77

88
//Initialize Document Editor component
9-
let documenteditor: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' });
9+
let documenteditor: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
1010

1111
// Render Document Editor component.
1212
documenteditor.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/open-aws-s3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor
55
DocumentEditorContainer.Inject(Toolbar);
66

77
//Initialize Document Editor component
8-
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' });
8+
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
99

1010
// Render Document Editor component.
1111
documentEditorContainer.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/open-aws-s3/js/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
// Initialize DocumentEditorContainer component.
7777
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' });
7878
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
79-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
79+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
8080
//DocumentEditorContainer control rendering starts
8181
documenteditorContainer.appendTo('#DocumentEditor');
8282
document.getElementById('load').addEventListener('click', function () {

ej2-javascript/code-snippet/document-editor/open-azure-blob/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor
55
DocumentEditorContainer.Inject(Toolbar);
66

77
//Initialize Document Editor component
8-
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' });
8+
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
99

1010
// Render Document Editor component.
1111
documentEditorContainer.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/open-azure-blob/js/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
// Initialize DocumentEditorContainer component.
5151
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' });
5252
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
53-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
53+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
5454
//DocumentEditorContainer control rendering starts
5555
documenteditorContainer.appendTo('#DocumentEditor');
5656
document.getElementById('load').addEventListener('click', function () {

ej2-javascript/code-snippet/document-editor/open-default-document-cs1/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-javascript/code-snippet/document-editor/open-default-document-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { DocumentEditor, Editor } from '@syncfusion/ej2-documenteditor';
44

55
let documenteditor: DocumentEditor = new DocumentEditor({
6-
isReadOnly: false, height: '370px'
6+
isReadOnly: false, height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
77
});
88

99
//Enable all built in modules.

ej2-javascript/code-snippet/document-editor/read-container-cs1/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-javascript/code-snippet/document-editor/read-container-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ DocumentEditorContainer.Inject(Toolbar);
77
//Initiliaze Document Editor Container component.
88
let documenteditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '500px' });
99

10-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
10+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
1111

1212
//Enable read only mode inside `documentChange` event.
1313
documenteditorContainer.documentChange = (): void => {

ej2-javascript/code-snippet/document-editor/read-cs1/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ej2-javascript/code-snippet/document-editor/read-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
44

55
//Initialize Document Editor component.
6-
let documenteditor: DocumentEditor = new DocumentEditor({ height: '370px' });
6+
let documenteditor: DocumentEditor = new DocumentEditor({ height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
77

88
//Enable all the built in modules.
99
documenteditor.enableAllModules();

ej2-javascript/code-snippet/document-editor/rtl-cs1/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ ej.base.L10n.load({
285285
}
286286
}
287287
});
288-
var documenteditor = new ej.documenteditor.DocumentEditor({isReadOnly: false,enableRtl: true,locale: 'ar-AE'});
288+
var documenteditor = new ej.documenteditor.DocumentEditor({isReadOnly: false,enableRtl: true,locale: 'ar-AE', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'});
289289
documenteditor.enableAllModules();
290290
var containerPanel = document.getElementById('container');
291291
function updateContainerSize() {

ej2-javascript/code-snippet/document-editor/rtl-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ L10n.load({
294294

295295
let documenteditor: DocumentEditor = new DocumentEditor({
296296
isReadOnly: false,
297-
enableRtl: true, locale: 'ar-AE', height: '370px'
297+
enableRtl: true, locale: 'ar-AE', height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
298298
});
299299
//Enable all the built in modules.
300300
documenteditor.enableAllModules();

ej2-javascript/code-snippet/document-editor/ruler-cs1/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//Initialize Document Editor component.
22
var documenteditor = new ej.documenteditor.DocumentEditor({
3-
isReadOnly: false, height: '370px', documentEditorSettings: { showRuler: true }
3+
isReadOnly: false, height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/', documentEditorSettings: { showRuler: true }
44
});
55

66
//Enable all built in modules.

ej2-javascript/code-snippet/document-editor/ruler-cs1/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { DocumentEditor, Editor } from '@syncfusion/ej2-documenteditor';
44

55
//Initialize Document Editor component.
66
let documenteditor: DocumentEditor = new DocumentEditor({
7-
isReadOnly: false, height: '370px', documentEditorSettings: {showRuler: true}
7+
isReadOnly: false, height: '370px', documentEditorSettings: {showRuler: true}, serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
88
});
99

1010
//Enable all built in modules.

ej2-javascript/code-snippet/document-editor/save-aws-s3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor
55
DocumentEditorContainer.Inject(Toolbar);
66

77
//Initialize Document Editor component
8-
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' });
8+
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
99

1010
// Render Document Editor component.
1111
documentEditorContainer.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/save-aws-s3/js/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
// Initialize DocumentEditorContainer component.
7777
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' });
7878
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
79-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
79+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
8080
//DocumentEditorContainer control rendering starts
8181
documenteditorContainer.appendTo('#DocumentEditor');
8282
document.getElementById('export').addEventListener('click', function () {

ej2-javascript/code-snippet/document-editor/save-azure-blob/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DocumentEditorContainer, Toolbar } from '@syncfusion/ej2-documenteditor
55
DocumentEditorContainer.Inject(Toolbar);
66

77
//Initialize Document Editor component
8-
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/' });
8+
let documentEditorContainer: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/' });
99

1010
// Render Document Editor component.
1111
documentEditorContainer.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/save-azure-blob/js/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
// Initialize DocumentEditorContainer component.
5151
var documenteditorContainer = new ej.documenteditor.DocumentEditorContainer({ enableToolbar: true, height: '590px' });
5252
ej.documenteditor.DocumentEditorContainer.Inject(ej.documenteditor.Toolbar);
53-
documenteditorContainer.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
53+
documenteditorContainer.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
5454
//DocumentEditorContainer control rendering starts
5555
documenteditorContainer.appendTo('#DocumentEditor');
5656
document.getElementById('export').addEventListener('click', function () {

ej2-javascript/code-snippet/document-editor/scrolling-zooming-cs2/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var documenteditor = new ej.documenteditor.DocumentEditor({
2-
isReadOnly: false
2+
isReadOnly: false, serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
33
});
44
documenteditor.enableAllModules();
55
documenteditor.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/scrolling-zooming-cs2/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import { DocumentEditor } from '@syncfusion/ej2-documenteditor';
44
//Initialize the Document Editor component.
55
let documenteditor: DocumentEditor = new DocumentEditor({
6-
isReadOnly: false, height: '370px'
6+
isReadOnly: false, height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
77
});
88
documenteditor.enableAllModules();
99
documenteditor.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/scrolling-zooming-cs3/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
var documenteditor = new ej.documenteditor.DocumentEditor({
2-
isReadOnly: false
2+
isReadOnly: false, serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
33
});
44
documenteditor.enableAllModules();
55
documenteditor.appendTo('#DocumentEditor');

ej2-javascript/code-snippet/document-editor/scrolling-zooming-cs3/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { createElement } from '@syncfusion/ej2-base';
55
import { DropDownButton, ItemModel, MenuEventArgs } from '@syncfusion/ej2-splitbuttons';
66

77
let documenteditor: DocumentEditor = new DocumentEditor({
8-
isReadOnly: false, height: '370px'
8+
isReadOnly: false, height: '370px', serviceUrl: 'https://services.syncfusion.com/js/production/api/documenteditor/'
99
});
1010
documenteditor.enableAllModules();
1111

ej2-javascript/document-editor/form-fields.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ let container: DocumentEditorContainer = new DocumentEditorContainer({
120120
});
121121
DocumentEditorContainer.Inject(Toolbar);
122122
container.serviceUrl =
123-
'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
123+
'https://services.syncfusion.com/js/production/api/documenteditor/';
124124
container.appendTo('#container');
125125

126126
//enforce protection

ej2-javascript/document-editor/how-to/auto-save-document-in-document-editor.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ import {
2525
let container: DocumentEditorContainer = new DocumentEditorContainer({ enableToolbar: true, height: '590px' });
2626
let contentChanged: boolean = false;
2727
DocumentEditorContainer.Inject(Toolbar);
28-
container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
28+
container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
2929
container.created = function () {
3030
setInterval(() => {
3131
if (contentChanged) {

ej2-javascript/document-editor/how-to/change-the-default-search-highlight-color.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ let container: DocumentEditorContainer = new DocumentEditorContainer({ enableToo
2525
}
2626
});
2727
DocumentEditorContainer.Inject(Toolbar);
28-
container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
28+
container.serviceUrl = 'https://services.syncfusion.com/js/production/api/documenteditor/';
2929
container.appendTo('#container');
3030

3131
```

0 commit comments

Comments
 (0)