prevent viewer from zooming on cmd+mousewheel

This commit is contained in:
Taylor Brown 2015-04-09 16:51:16 -07:00 committed by Taylor Brown
parent 1d6fae231e
commit 34d3b96b52

View File

@ -1981,7 +1981,8 @@ function handleMouseWheel(evt) {
if (PresentationMode.active) {
evt.preventDefault();
PDFViewerApplication.mouseScroll(ticks * MOUSE_WHEEL_DELTA_FACTOR);
} else if (evt.ctrlKey) { // Only zoom the pages, not the entire viewer
} else if (evt.ctrlKey || evt.metaKey) {
// Only zoom the pages, not the entire viewer
evt.preventDefault();
PDFViewerApplication[direction](Math.abs(ticks));
}