1
0
mirror of https://github.com/node-red/node-red.git synced 2023-10-10 13:36:53 +02:00

Finally get Firefox and Chrome to wheel zoom in the same manner...

This commit is contained in:
Dave C-J 2014-05-14 17:41:04 +01:00
parent e0971d96c6
commit 3ba6ad07b7

View File

@ -525,7 +525,7 @@ RED.view = function() {
if ( evt.altKey ) {
evt.preventDefault();
evt.stopPropagation();
var move = evt.originalEvent.detail || evt.originalEvent.wheelDelta;
var move = -(evt.originalEvent.detail) || evt.originalEvent.wheelDelta;
if (move <= 0) { zoomOut(); }
else { zoomIn(); }
}