[Pkg-javascript-commits] [pdf.js] 122/157: Remove unused globals and updateViewarea function from viewer.js
David Prévot
taffit at moszumanska.debian.org
Tue Aug 11 06:46:47 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository pdf.js.
commit 9c510bd6e6ce93ab9b21a78a49020c825cd42feb
Author: Tim van der Meij <timvandermeij at gmail.com>
Date: Thu Jul 23 16:02:39 2015 +0200
Remove unused globals and updateViewarea function from viewer.js
---
web/viewer.js | 22 +++++++++-------------
1 file changed, 9 insertions(+), 13 deletions(-)
diff --git a/web/viewer.js b/web/viewer.js
index c861b31..a662e16 100644
--- a/web/viewer.js
+++ b/web/viewer.js
@@ -20,10 +20,10 @@
PDFThumbnailViewer, URL, noContextMenuHandler, SecondaryToolbar,
PasswordPrompt, PDFPresentationMode, PDFDocumentProperties, HandTool,
Promise, PDFLinkService, PDFOutlineView, PDFAttachmentView,
- OverlayManager, PDFFindController, PDFFindBar, getVisibleElements,
- watchScroll, PDFViewer, PDFRenderingQueue, PresentationModeState,
- parseQueryString, RenderingStates, UNKNOWN_SCALE,
- DEFAULT_SCALE_VALUE, IGNORE_CURRENT_POSITION_ON_ZOOM: true */
+ OverlayManager, PDFFindController, PDFFindBar, PDFViewer,
+ PDFRenderingQueue, PresentationModeState, parseQueryString,
+ RenderingStates, UNKNOWN_SCALE, DEFAULT_SCALE_VALUE,
+ IGNORE_CURRENT_POSITION_ON_ZOOM: true */
'use strict';
@@ -1591,13 +1591,6 @@ window.addEventListener('presentationmodechanged', function (e) {
active ? PresentationModeState.FULLSCREEN : PresentationModeState.NORMAL;
});
-function updateViewarea() {
- if (!PDFViewerApplication.initialized) {
- return;
- }
- PDFViewerApplication.pdfViewer.update();
-}
-
window.addEventListener('updateviewarea', function (evt) {
if (!PDFViewerApplication.initialized) {
return;
@@ -1650,8 +1643,8 @@ window.addEventListener('resize', function webViewerResize(evt) {
// (E.g. the document being rendered with the wrong scale on load.)
PDFViewerApplication.pdfViewer.currentScaleValue = DEFAULT_SCALE_VALUE;
}
+ PDFViewerApplication.pdfViewer.update();
}
- updateViewarea();
// Set the 'max-height' CSS property of the secondary toolbar.
SecondaryToolbar.setMaxHeight(document.getElementById('viewerContainer'));
@@ -1759,7 +1752,10 @@ window.addEventListener('scalechange', function scalechange(evt) {
mozL10n.get('page_scale_percent', { scale: customScale }, '{{scale}}%');
customScaleOption.selected = true;
}
- updateViewarea();
+ if (!PDFViewerApplication.initialized) {
+ return;
+ }
+ PDFViewerApplication.pdfViewer.update();
}, true);
window.addEventListener('pagechange', function pagechange(evt) {
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/pdf.js.git
More information about the Pkg-javascript-commits
mailing list