cytoscape-klay
Advanced tools
Comparing version 3.1.3 to 3.1.4
@@ -171,7 +171,7 @@ (function webpackUniversalModuleDefinition(root, factory) { | ||
if (parent.nonempty()) { | ||
while (parent.nonempty()) { | ||
var kp = parent.scratch('klay'); | ||
p.x += kp.x; | ||
p.y += kp.y; | ||
parent = parent.parent(); | ||
} | ||
@@ -178,0 +178,0 @@ |
{ | ||
"name": "cytoscape-klay", | ||
"version": "3.1.3", | ||
"version": "3.1.4", | ||
"description": "The Klay layout algorithm for Cytoscape.js", | ||
@@ -5,0 +5,0 @@ "main": "cytoscape-klay.js", |
@@ -86,7 +86,7 @@ const klay = require('klayjs'); | ||
if( parent.nonempty() ){ | ||
let kp = parent.scratch('klay'); | ||
while (parent.nonempty()) { | ||
var kp = parent.scratch('klay'); | ||
p.x += kp.x; | ||
p.y += kp.y; | ||
parent = parent.parent(); | ||
} | ||
@@ -93,0 +93,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
77794
865