Fix zoom out keyboard shortcut for mac.

This commit is contained in:
Brendan Dahl 2012-09-10 09:28:45 -07:00
parent bd0e42220b
commit 62734a2d97

View File

@ -2295,6 +2295,7 @@ window.addEventListener('keydown', function keydown(evt) {
PDFView.zoomIn();
handled = true;
break;
case 173: // FF/Mac '-'
case 109: // FF '-'
case 189: // Chrome '-'
PDFView.zoomOut();