cytoscape
Advanced tools
Comparing version 3.3.3 to 3.3.4
{ | ||
"build/cytoscape.umd.js": { | ||
"bundled": 887520, | ||
"minified": 328780, | ||
"gzipped": 102224 | ||
"bundled": 887627, | ||
"minified": 328853, | ||
"gzipped": 102252 | ||
}, | ||
"build/cytoscape.cjs.js": { | ||
"bundled": 817403, | ||
"minified": 345722, | ||
"gzipped": 104217 | ||
"bundled": 817504, | ||
"minified": 345795, | ||
"gzipped": 104239 | ||
}, | ||
"build/cytoscape.esm.js": { | ||
"bundled": 817230, | ||
"minified": 345585, | ||
"gzipped": 104184, | ||
"bundled": 817331, | ||
"minified": 345658, | ||
"gzipped": 104209, | ||
"treeshaked": { | ||
"rollup": { | ||
"code": 323534, | ||
"code": 323607, | ||
"import_statements": 51 | ||
}, | ||
"webpack": { | ||
"code": 325677 | ||
"code": 325750 | ||
} | ||
@@ -24,0 +24,0 @@ } |
{ | ||
"name": "cytoscape", | ||
"version": "3.3.3", | ||
"version": "3.3.4", | ||
"license": "MIT", | ||
@@ -81,4 +81,3 @@ "description": "Graph theory (a.k.a. network) library for analysis and visualisation", | ||
"dist": "cross-env NODE_ENV=production run-s build dist:*", | ||
"release": "run-s copyright dist docs", | ||
"postpublish": "run-s docs:push", | ||
"release": "run-s copyright dist", | ||
"watch": "run-s watch:fast", | ||
@@ -85,0 +84,0 @@ "watch:sync": "livereload \"build, debug\"", |
import * as util from '../util'; | ||
let rendererDefaults = util.defaults({ | ||
hideEdgesOnViewport: false, | ||
textureOnViewport: false, | ||
motionBlur: false, | ||
@@ -5,0 +7,0 @@ motionBlurOpacity: 0.05, |
@@ -46,2 +46,3 @@ import * as util from '../../../util'; | ||
var r = this; | ||
var cy = r.cy; | ||
@@ -57,3 +58,7 @@ if( r.renderLoopStarted ){ | ||
if( r.requestedFrame && !r.skipFrame ){ | ||
if( cy.batching() ){ | ||
// mid-batch, none of these should run | ||
// - pre frame hooks (calculations, texture caches, style, etc.) | ||
// - any drawing | ||
} else if( r.requestedFrame && !r.skipFrame ){ | ||
beforeRenderCallbacks( r, true, requestTime ); | ||
@@ -60,0 +65,0 @@ |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
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
3701708
100706