UNCLASSIFIED - NO CUI

Skip to content
Snippets Groups Projects

BULL-2078 Direct Links

Merged kjeffries requested to merge BULL-2078 into master
All threads resolved!
4 files
+ 14
33
Compare changes
  • Side-by-side
  • Inline
Files
4
@@ -402,9 +402,9 @@ export default {
@@ -402,9 +402,9 @@ export default {
})
})
);
);
joint.routers.orthogonal2 = function (_vertices, _args, linkView) {
function routerOrthogonal2(_vertices, _args, linkView) {
return orthogonal2Routing(linkView);
return orthogonal2Routing(linkView);
};
}
[
[
["Docker File Lint", "Build"],
["Docker File Lint", "Build"],
@@ -451,14 +451,14 @@ export default {
@@ -451,14 +451,14 @@ export default {
strokeWidth: 1,
strokeWidth: 1,
},
},
});
});
link.router("orthogonal2");
link.router(routerOrthogonal2);
link.connector("rounded");
link.connector("rounded");
link.addTo(graph);
link.addTo(graph);
});
});
joint.routers.orthogonalAround = function (_vertices, _args, linkView) {
function routerOrthogonalAround(_vertices, _args, linkView) {
return orthogonalAroundRouting(linkView);
return orthogonalAroundRouting(linkView);
};
}
const link = new joint.shapes.standard.Link();
const link = new joint.shapes.standard.Link();
link.source(stepsMap.get("Release Job (Production Only)").element, {
link.source(stepsMap.get("Release Job (Production Only)").element, {
@@ -482,7 +482,7 @@ export default {
@@ -482,7 +482,7 @@ export default {
strokeDasharray: "4 2",
strokeDasharray: "4 2",
},
},
});
});
link.router("orthogonalAround");
link.router(routerOrthogonalAround);
link.connector("rounded");
link.connector("rounded");
link.addTo(graph);
link.addTo(graph);
Loading