Skip to content

Commit 66f7183

Browse files
Merge pull request #158 from Syncfusion-Content/hotfix/hotfix-v23.2.4
DOCINFRA-2341_merged_using_automation
2 parents c369f34 + 69a0620 commit 66f7183

File tree

21 files changed

+682
-1765
lines changed

21 files changed

+682
-1765
lines changed

ej2-javascript/code-snippet/data/getting-started-cs33/index.ts

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

6-
const SERVICE_URI: string = 'https://js.syncfusion.com/demos/ejServices/Wcf/Northwind.svc/Orders/?$top=20';
6+
const SERVICE_URI: string = 'https://services.syncfusion.com/js/production/api/Orders';
77

88
let grid: Grid = new Grid({
99
dataSource: new DataManager({ url: SERVICE_URI }),

ej2-javascript/code-snippet/diagram/getting-started-cs4/index.js

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,19 @@ var connector = [
1818
{
1919
id: 'connector4', sourceID: 'Condition', targetID: 'End', annotations: [{ content: 'No' }],
2020
type: 'Orthogonal',
21-
segments: [{ length: 50, direction: 'Bottom' }]
21+
segments: [
22+
{ type: 'Orthogonal', length: 30, direction: "Right" },
23+
{ type: 'Orthogonal', length: 300, direction: "Bottom" }
24+
]
2225
},
2326
{ id: 'connector5', sourceID: 'Print', targetID: 'Increment' },
2427
{
2528
id: 'connector6', sourceID: 'Increment', targetID: 'Condition',
2629
type: 'Orthogonal',
27-
segments: [{ length: 50, direction: 'Bottom' }]
30+
segments: [
31+
{ type: 'Orthogonal', length: 30, direction: "Left" },
32+
{ type: 'Orthogonal', length: 200, direction: "Top" }
33+
]
2834
}
2935
];
3036

ej2-javascript/code-snippet/gantt/actionfailure-cs1/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ var gantt = new ej.gantt.Gantt({
1616
parentID: 'parentID',
1717
},
1818
actionFailure: (e) => {
19-
let span: HTMLElement = document.createElement('span');
19+
let span = document.createElement('span');
2020
gantt.element.parentNode.insertBefore(span, gantt.element);
2121
span.style.color = '#FF0000'
2222
span.innerHTML = 'Server exception: 404 Not found';

0 commit comments

Comments
 (0)