cytoscape
Advanced tools
Comparing version 3.1.2 to 3.1.3
{ | ||
"name": "cytoscape", | ||
"version": "3.1.2", | ||
"version": "3.1.3", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "description": "Graph theory (a.k.a. network) library for analysis and visualisation", |
@@ -293,3 +293,3 @@ 'use strict'; | ||
if( endPos && isEles ){ | ||
if( endPos && isEles && !self.locked() ){ | ||
var pos = self.position(); | ||
@@ -692,2 +692,6 @@ | ||
function getEasedValue( type, start, end, percent, easingFn ){ | ||
if( percent === 1 ){ | ||
return end; | ||
} | ||
var val = easingFn( start, end, percent ); | ||
@@ -694,0 +698,0 @@ |
@@ -554,5 +554,5 @@ 'use strict'; | ||
parent = parent[0]; | ||
parent.trigger( evt ); | ||
parent.trigger( evt, extraParams ); | ||
} else { // otherwise, bubble up to the core | ||
cy.trigger( evt ); | ||
cy.trigger( evt, extraParams ); | ||
} | ||
@@ -559,0 +559,0 @@ } |
@@ -1,1 +0,1 @@ | ||
module.exports = "3.1.2"; | ||
module.exports = "3.1.3"; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
127
2998239
48850