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.1.0 to 1.1.1

2

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

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

@@ -73,3 +73,7 @@ cytoscape-edge-bend-editing

// whether to start the plugin in the enabled state
enabled: true
enabled: true,
// title of add bend point menu item (User may need to adjust width of menu items according to length of this option)
addBendMenuItemTitle: "Add Bend Point",
// title of remove bend point menu item (User may need to adjust width of menu items according to length of this option)
removeBendMenuItemTitle: "Remove Bend Point"
};

@@ -76,0 +80,0 @@ ```

@@ -22,3 +22,7 @@ ;(function($$, $){ 'use strict';

// whether to start the plugin in the enabled state
enabled: true
enabled: true,
// title of add bend point menu item (User may need to adjust width of menu items according to length of this option)
addBendMenuItemTitle: "Add Bend Point",
// title of remove bend point menu item (User may need to adjust width of menu items according to length of this option)
removeBendMenuItemTitle: "Remove Bend Point"
};

@@ -25,0 +29,0 @@

@@ -70,3 +70,3 @@ var debounce = require('./debounce');

id: addBendPointCxtMenuId,
title: 'Add Bend Point',
title: opts.addBendMenuItemTitle,
selector: 'edge:selected',

@@ -77,3 +77,3 @@ onClickFunction: cxtAddBendPointFcn

id: removeBendPointCxtMenuId,
title: 'Remove Bend Point',
title: opts.removeBendMenuItemTitle,
selector: 'edge:selected',

@@ -80,0 +80,0 @@ onClickFunction: cxtRemoveBendPointFcn

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