Merge pull request #763 from Riksarkivet/master

Fixed zooming in with plus key on a swedish keyboard.
This commit is contained in:
Ian Gilman 2015-11-04 09:49:50 -08:00
commit 6c7f630c19

View File

@ -2293,6 +2293,7 @@ function onCanvasKeyDown( event ) {
function onCanvasKeyPress( event ) { function onCanvasKeyPress( event ) {
if ( !event.preventDefaultAction && !event.ctrl && !event.alt && !event.meta ) { if ( !event.preventDefaultAction && !event.ctrl && !event.alt && !event.meta ) {
switch( event.keyCode ){ switch( event.keyCode ){
case 43://=|+
case 61://=|+ case 61://=|+
this.viewport.zoomBy(1.1); this.viewport.zoomBy(1.1);
this.viewport.applyConstraints(); this.viewport.applyConstraints();