New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cytoscape-edge-bend-editing

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cytoscape-edge-bend-editing - npm Package Compare versions

Comparing version 1.5.0 to 1.5.1

2

package.json
{
"name": "cytoscape-edge-bend-editing",
"version": "1.5.0",
"version": "1.5.1",
"description": "A Cytoscape.js extension enables editing edge bend points",

@@ -5,0 +5,0 @@ "main": "cytoscape-edge-bend-editing.js",

@@ -295,2 +295,6 @@ var debounce = require('./debounce');

cy.bind('zoom pan', eZoom = function () {
if ( !edgeToHighlightBends ) {
return;
}
refreshDraws();

@@ -300,2 +304,10 @@ });

cy.on('position', 'node', ePosition = function () {
var node = this;
// If there is no edge to highlight bends or this node is not any end of that edge return directly
if ( !edgeToHighlightBends || !( edgeToHighlightBends.data('source') === node.id()
|| edgeToHighlightBends.data('target') === node.id() ) ) {
return;
}
refreshDraws();

@@ -302,0 +314,0 @@ });

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc