Fixes canvas alignment for small scale and scale adjustment after Cmd+0

This commit is contained in:
Yury Delendik 2013-08-13 18:45:06 -05:00
parent e5cd027dce
commit 86077810b0
2 changed files with 7 additions and 3 deletions

View File

@ -1102,7 +1102,7 @@ html[dir='rtl'] .outlineItem > a {
}
canvas {
margin: auto;
margin: 0;
display: block;
}

View File

@ -2765,8 +2765,12 @@ window.addEventListener('keydown', function keydown(evt) {
break;
case 48: // '0'
case 96: // '0' on Numpad of Swedish keyboard
PDFView.parseScale(DEFAULT_SCALE, true);
handled = false; // keeping it unhandled (to restore page zoom to 100%)
// keeping it unhandled (to restore page zoom to 100%)
setTimeout(function () {
// ... and resetting the scale after browser adjusts its scale
PDFView.parseScale(DEFAULT_SCALE, true);
});
handled = false;
break;
}
}