Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: tbo47/dagre-es
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7.0.9
Choose a base ref
...
head repository: tbo47/dagre-es
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 7.0.10
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Mar 1, 2023

  1. add badger

    tbo committed Mar 1, 2023
    Copy the full SHA
    761b78f View commit details

Commits on Mar 10, 2023

  1. iterate over properties

    Pr0dt0s authored Mar 10, 2023
    Copy the full SHA
    91c18ed View commit details
  2. Merge pull request #20 from Pr0dt0s/fix/19_iterate_properties

    iterate over properties
    tbo47 authored Mar 10, 2023
    Copy the full SHA
    f14d9a1 View commit details
Showing with 7 additions and 1 deletion.
  1. +6 −0 README.md
  2. +1 −1 src/dagre/position/index.js
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<p align="center">
<a href="https://www.npmjs.com/dagre-d3-es">
<img src="https://img.shields.io/npm/v/dagre-d3-es.svg?logo=npm&logoColor=fff&label=NPM+package&color=limegreen" alt="dagre-d3-es on npm" />
</a>&nbsp;
</p>

# dagre-d3-es

The [dagre-d3](https://github.com/dagrejs) library is not maintained anymore.
2 changes: 1 addition & 1 deletion src/dagre/position/index.js
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ function position(g) {
g = util.asNonCompoundGraph(g);

positionY(g);
_.forEach(positionX(g), function (x, v) {
_.forOwn(positionX(g), function (x, v) {
g.node(v).x = x;
});
}