mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-04-06 07:13:31 +03:00
Fixed zooming in with plus sign.
This commit is contained in:
parent
9fa3136e78
commit
6b098c1c2b
1 changed files with 1 additions and 0 deletions
|
@ -2293,6 +2293,7 @@ function onCanvasKeyDown( event ) {
|
|||
function onCanvasKeyPress( event ) {
|
||||
if ( !event.preventDefaultAction && !event.ctrl && !event.alt && !event.meta ) {
|
||||
switch( event.keyCode ){
|
||||
case 43://=|+
|
||||
case 61://=|+
|
||||
this.viewport.zoomBy(1.1);
|
||||
this.viewport.applyConstraints();
|
||||
|
|
Loading…
Add table
Reference in a new issue