Comparing version 2.0.0-alpha34 to 2.0.0-alpha35
@@ -110,2 +110,5 @@ "use strict"; | ||
function getWheelDelta(e) { | ||
// TODO: check those ratios again to ensure a clean Chrome/Firefox compat | ||
if (typeof e.deltaY !== "undefined") | ||
return (e.deltaY * -3) / 360; | ||
if (typeof e.detail !== "undefined") | ||
@@ -112,0 +115,0 @@ return e.detail / -9; |
{ | ||
"name": "sigma", | ||
"version": "2.0.0-alpha34", | ||
"version": "2.0.0-alpha35", | ||
"description": "A JavaScript library dedicated to graph drawing.", | ||
@@ -5,0 +5,0 @@ "homepage": "http://sigmajs.org", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
391325
4029