Skip to content

Commit c722b17

Browse files
committed
974850: URl changes
1 parent c575c2f commit c722b17

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Document-Processing/Word/Word-Processor/javascript-es5/track-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ The following example code illustrates how to enable and update custom metadata
131131

132132
```js
133133
var container = new ej.documenteditor.DocumentEditor({
134-
serviceUrl: hostUrl,
134+
serviceUrl: 'hostUrl',
135135
height: '590px',
136136
enableTrackChanges: true,
137137
documentEditorSettings: {

Document-Processing/Word/Word-Processor/javascript-es6/track-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@ The following example code illustrates how to enable and update custom metadata
178178
import { DocumentEditorContainer, Ribbon } from '@syncfusion/ej2-documenteditor';
179179
let container: DocumentEditorContainer = new DocumentEditorContainer({
180180
height: '590px',
181-
serviceUrl= hostUrl,
181+
serviceUrl= 'hostUrl',
182182
enableTrackChanges= true,
183183
documentEditorSettings: {
184184
revisionSettings: { customData : "Developer", showCustomDataWithAuthor : true }}

Document-Processing/Word/Word-Processor/react/track-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ function App() {
214214
container = scope;
215215
}}
216216
height={'590px'}
217-
serviceUrl="HostURL"
217+
serviceUrl="HostUrl"
218218
enableTrackChanges={true}
219219
documentEditorSettings={settings}
220220
/>

Document-Processing/Word/Word-Processor/vue/track-changes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ The following example code illustrates how to enable and update custom metadata
185185

186186
export default {
187187
data() {
188-
return { serviceUrl:'https://document.syncfusion.com/web-services/docx-editor/api/documenteditor/',
188+
return { serviceUrl:'HostUrl',
189189
settings: { revisionSettings: { customData: 'Developer', showCustomDataWithAuthor: true} }};
190190
},
191191
provide: {

0 commit comments

Comments
 (0)