Skip to content

Commit 471c632

Browse files
Release v0.0.114
1 parent 81e65c7 commit 471c632

File tree

6 files changed

+11
-3
lines changed

6 files changed

+11
-3
lines changed

dist/build.js

+2
Original file line numberDiff line numberDiff line change
@@ -50918,6 +50918,8 @@ var mxEdgeStyle =
5091850918
hash = (hash * 31 + str.charCodeAt(i)) % 1000000; // Simple hash function
5091950919
}
5092050920
randomDeltaX = ((hash % 5) + 1) * 4;
50921+
} else {
50922+
randomDeltaX = -10;
5092150923
}
5092250924

5092350925
arr.x += (randomDeltaX - 10) * state.view.getScale();

dist/index.js

+2
Original file line numberDiff line numberDiff line change
@@ -25208,6 +25208,8 @@ var require_build = __commonJS({
2520825208
hash = (hash * 31 + str.charCodeAt(i)) % 1e6;
2520925209
}
2521025210
randomDeltaX = (hash % 5 + 1) * 4;
25211+
} else {
25212+
randomDeltaX = -10;
2521125213
}
2521225214
arr.x += (randomDeltaX - 10) * state.view.getScale();
2521325215
result2.push(new mxPoint(arr.x, dep.y));

dist/index.js.map

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/js/view/mxEdgeStyle.js

+2
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,8 @@ var mxEdgeStyle =
347347
hash = (hash * 31 + str.charCodeAt(i)) % 1000000; // Simple hash function
348348
}
349349
randomDeltaX = ((hash % 5) + 1) * 4;
350+
} else {
351+
randomDeltaX = -10;
350352
}
351353

352354
arr.x += (randomDeltaX - 10) * state.view.getScale();

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "azdataGraph",
33
"description": "azdataGraph is a derivative of mxGraph, which is a fully client side JavaScript diagramming library that uses SVG and HTML for rendering.",
4-
"version": "0.0.113",
4+
"version": "0.0.114",
55
"homepage": "https://github.com/microsoft/azdataGraph",
66
"author": "Microsoft",
77
"license": "Apache-2.0",

src/js/view/mxEdgeStyle.js

+2
Original file line numberDiff line numberDiff line change
@@ -347,6 +347,8 @@ var mxEdgeStyle =
347347
hash = (hash * 31 + str.charCodeAt(i)) % 1000000; // Simple hash function
348348
}
349349
randomDeltaX = ((hash % 5) + 1) * 4;
350+
} else {
351+
randomDeltaX = -10;
350352
}
351353

352354
arr.x += (randomDeltaX - 10) * state.view.getScale();

0 commit comments

Comments
 (0)