Skip to content

Commit 5c1c0c8

Browse files
committed
Building before release
1 parent c1d336d commit 5c1c0c8

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

bower.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "dagre",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"main": [
55
"dist/dagre.core.js"
66
],

dist/dagre.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -456,12 +456,12 @@ function layout(g, opts) {
456456
time("layout", () => {
457457
let layoutGraph =
458458
time(" buildLayoutGraph", () => buildLayoutGraph(g));
459-
time(" runLayout", () => runLayout(layoutGraph, time));
459+
time(" runLayout", () => runLayout(layoutGraph, time, opts));
460460
time(" updateInputGraph", () => updateInputGraph(g, layoutGraph));
461461
});
462462
}
463463

464-
function runLayout(g, time) {
464+
function runLayout(g, time, opts) {
465465
time(" makeSpaceForEdgeLabels", () => makeSpaceForEdgeLabels(g));
466466
time(" removeSelfEdges", () => removeSelfEdges(g));
467467
time(" acyclic", () => acyclic.run(g));
@@ -476,7 +476,7 @@ function runLayout(g, time) {
476476
time(" normalize.run", () => normalize.run(g));
477477
time(" parentDummyChains", () => parentDummyChains(g));
478478
time(" addBorderSegments", () => addBorderSegments(g));
479-
time(" order", () => order(g));
479+
time(" order", () => order(g, opts));
480480
time(" insertSelfEdges", () => insertSelfEdges(g));
481481
time(" adjustCoordinateSystem", () => coordinateSystem.adjust(g));
482482
time(" position", () => position(g));
@@ -2959,7 +2959,7 @@ function zipObject(props, values) {
29592959
}
29602960

29612961
},{"@dagrejs/graphlib":29}],28:[function(require,module,exports){
2962-
module.exports = "1.1.2";
2962+
module.exports = "1.1.3";
29632963

29642964
},{}],29:[function(require,module,exports){
29652965
/**

dist/dagre.min.js

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

0 commit comments

Comments
 (0)