Browse Source

Remove the `currentScaleValue` getter from `PDFViewerApplication` (issue 6158)

*The next step towards fixing issue 6158.*

We can just as well access `pdfViewer.currentScaleValue` directly in `PDFViewerApplication`, instead of having a helper function which just acts as a wrapper for it.
Jonas Jenwald 10 years ago
parent
commit
1c0115a7e4
  1. 10
      web/viewer.js

10
web/viewer.js

@ -312,10 +312,6 @@ var PDFViewerApplication = {
this.setScale(newScale, true); this.setScale(newScale, true);
}, },
get currentScaleValue() {
return this.pdfViewer.currentScaleValue;
},
get pagesCount() { get pagesCount() {
return this.pdfDocument.numPages; return this.pdfDocument.numPages;
}, },
@ -1964,7 +1960,7 @@ window.addEventListener('keydown', function keydown(evt) {
case 33: // pg up case 33: // pg up
case 8: // backspace case 8: // backspace
if (!isViewerInPresentationMode && if (!isViewerInPresentationMode &&
PDFViewerApplication.currentScaleValue !== 'page-fit') { pdfViewer.currentScaleValue !== 'page-fit') {
break; break;
} }
/* in presentation mode */ /* in presentation mode */
@ -1995,7 +1991,7 @@ window.addEventListener('keydown', function keydown(evt) {
case 34: // pg down case 34: // pg down
case 32: // spacebar case 32: // spacebar
if (!isViewerInPresentationMode && if (!isViewerInPresentationMode &&
PDFViewerApplication.currentScaleValue !== 'page-fit') { pdfViewer.currentScaleValue !== 'page-fit') {
break; break;
} }
/* falls through */ /* falls through */
@ -2040,7 +2036,7 @@ window.addEventListener('keydown', function keydown(evt) {
switch (evt.keyCode) { switch (evt.keyCode) {
case 32: // spacebar case 32: // spacebar
if (!isViewerInPresentationMode && if (!isViewerInPresentationMode &&
PDFViewerApplication.currentScaleValue !== 'page-fit') { pdfViewer.currentScaleValue !== 'page-fit') {
break; break;
} }
PDFViewerApplication.page--; PDFViewerApplication.page--;

Loading…
Cancel
Save