cytoscape-cxtmenu
Advanced tools
Comparing version 2.1.4 to 2.1.5
{ | ||
"name": "cytoscape-cxtmenu", | ||
"version": "2.1.4", | ||
"version": "2.1.5", | ||
"description": "A context menu for Cytoscape.js", | ||
@@ -5,0 +5,0 @@ "main": "cytoscape-cxtmenu.js", |
@@ -315,5 +315,11 @@ ;(function( $ ){ 'use strict'; | ||
var dx = e.originalEvent.pageX - offset.left - ctrx; | ||
var dy = e.originalEvent.pageY - offset.top - ctry; | ||
var origE = e.originalEvent; | ||
var isTouch = origE.touches && origE.touches.length > 0; | ||
var pageX = isTouch ? origE.touches[0].pageX : origE.pageX; | ||
var pageY = isTouch ? origE.touches[0].pageY : origE.pageY; | ||
var dx = pageX - offset.left - ctrx; | ||
var dy = pageY - offset.top - ctry; | ||
if( dx === 0 ){ dx = 0.01; } | ||
@@ -320,0 +326,0 @@ |
{ | ||
"name": "cytoscape-cxtmenu", | ||
"version": "2.1.4", | ||
"version": "2.1.5", | ||
"description": "A context menu for Cytoscape.js", | ||
@@ -5,0 +5,0 @@ "main": "cytoscape-cxtmenu.js", |
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
598611
1829