Browse Source

Merge pull request #7583 from Snuffleupagus/Named-Action-GoToPage-select

Change the `GoToPage` Named Action to select the contents of the `pageNumber` input, rather than just focusing the element
Tim van der Meij 9 years ago committed by GitHub
parent
commit
61a576c41f
  1. 2
      web/app.js

2
web/app.js

@ -1707,7 +1707,7 @@ function webViewerNamedAction(e) {
var action = e.action; var action = e.action;
switch (action) { switch (action) {
case 'GoToPage': case 'GoToPage':
PDFViewerApplication.appConfig.toolbar.pageNumber.focus(); PDFViewerApplication.appConfig.toolbar.pageNumber.select();
break; break;
case 'Find': case 'Find':

Loading…
Cancel
Save