1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-20 15:18:08 +02:00

Merge branch 'maxsong1002/shortcutkeytonavigate'

This commit is contained in:
Yury Delendik 2013-11-22 08:22:12 -06:00
commit 78b61fedfc

View file

@ -2012,6 +2012,11 @@ window.addEventListener('keydown', function keydown(evt) {
SecondaryToolbar.presentationModeClick();
handled = true;
break;
case 71: // g
// focuses input#pageNumber field
document.getElementById('pageNumber').select();
handled = true;
break;
}
}