Merge pull request #1020 from vird/patch-1

Avoid propagating mouse wheel events when they're first caught by the navigate plugin.
master
David Schnur 13 years ago
commit bb525187a7

@ -135,6 +135,7 @@ Licensed under the MIT License ~ http://threedubmedia.googlecode.com/files/MIT-L
}
function onMouseWheel(e, delta) {
e.preventDefault();
onZoomClick(e, delta < 0);
return false;
}

Loading…
Cancel
Save