223c429357
http://eslint.org/docs/rules/comma-dangle http://eslint.org/docs/rules/object-curly-spacing Given that we currently have quite inconsistent object formatting, fixing this in in *one* big patch probably wouldn't be feasible (since I cannot imagine anyone wanting to review that); hence I've opted to try and do this piecewise instead. *Please note:* This patch was created automatically, using the ESLint `--fix` command line option. In a couple of places this caused lines to become too long, and I've fixed those manually; please refer to the interdiff below for the only hand-edits in this patch. ```diff diff --git a/web/pdf_thumbnail_view.js b/web/pdf_thumbnail_view.js index 002dbf29..1de4e530 100644 --- a/web/pdf_thumbnail_view.js +++ b/web/pdf_thumbnail_view.js @@ -420,8 +420,8 @@ var PDFThumbnailView = (function PDFThumbnailViewClosure() { setPageLabel: function PDFThumbnailView_setPageLabel(label) { this.pageLabel = (typeof label === 'string' ? label : null); - this.l10n.get('thumb_page_title', { page: this.pageId, }, 'Page {{page}}'). - then((msg) => { + this.l10n.get('thumb_page_title', { page: this.pageId, }, + 'Page {{page}}').then((msg) => { this.anchor.title = msg; }); diff --git a/web/secondary_toolbar.js b/web/secondary_toolbar.js index 160e0410..6495fc5e 100644 --- a/web/secondary_toolbar.js +++ b/web/secondary_toolbar.js @@ -65,7 +65,8 @@ class SecondaryToolbar { { element: options.printButton, eventName: 'print', close: true, }, { element: options.downloadButton, eventName: 'download', close: true, }, { element: options.viewBookmarkButton, eventName: null, close: true, }, - { element: options.firstPageButton, eventName: 'firstpage', close: true, }, + { element: options.firstPageButton, eventName: 'firstpage', + close: true, }, { element: options.lastPageButton, eventName: 'lastpage', close: true, }, { element: options.pageRotateCwButton, eventName: 'rotatecw', close: false, }, @@ -76,7 +77,7 @@ class SecondaryToolbar { { element: options.cursorHandToolButton, eventName: 'switchcursortool', eventDetails: { tool: CursorTool.HAND, }, close: true, }, { element: options.documentPropertiesButton, - eventName: 'documentproperties', close: true, } + eventName: 'documentproperties', close: true, }, ]; this.items = { firstPage: options.firstPageButton, ```
198 lines
8.4 KiB
JavaScript
198 lines
8.4 KiB
JavaScript
/* Copyright 2016 Mozilla Foundation
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/* globals chrome */
|
|
|
|
'use strict';
|
|
|
|
var DEFAULT_URL = 'compressed.tracemonkey-pldi-09.pdf';
|
|
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('CHROME')) {
|
|
(function rewriteUrlClosure() {
|
|
// Run this code outside DOMContentLoaded to make sure that the URL
|
|
// is rewritten as soon as possible.
|
|
var queryString = document.location.search.slice(1);
|
|
var m = /(^|&)file=([^&]*)/.exec(queryString);
|
|
DEFAULT_URL = m ? decodeURIComponent(m[2]) : '';
|
|
|
|
// Example: chrome-extension://.../http://example.com/file.pdf
|
|
var humanReadableUrl = '/' + DEFAULT_URL + location.hash;
|
|
history.replaceState(history.state, '', humanReadableUrl);
|
|
if (top === window) {
|
|
chrome.runtime.sendMessage('showPageAction');
|
|
}
|
|
})();
|
|
}
|
|
|
|
var pdfjsWebApp;
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('PRODUCTION')) {
|
|
pdfjsWebApp = require('./app.js');
|
|
}
|
|
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('FIREFOX || MOZCENTRAL')) {
|
|
require('./firefoxcom.js');
|
|
require('./firefox_print_service.js');
|
|
}
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('GENERIC')) {
|
|
require('./genericcom.js');
|
|
}
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('CHROME')) {
|
|
require('./chromecom.js');
|
|
}
|
|
if (typeof PDFJSDev !== 'undefined' && PDFJSDev.test('CHROME || GENERIC')) {
|
|
require('./pdf_print_service.js');
|
|
}
|
|
|
|
function getViewerConfiguration() {
|
|
return {
|
|
appContainer: document.body,
|
|
mainContainer: document.getElementById('viewerContainer'),
|
|
viewerContainer: document.getElementById('viewer'),
|
|
eventBus: null, // using global event bus with DOM events
|
|
toolbar: {
|
|
container: document.getElementById('toolbarViewer'),
|
|
numPages: document.getElementById('numPages'),
|
|
pageNumber: document.getElementById('pageNumber'),
|
|
scaleSelectContainer: document.getElementById('scaleSelectContainer'),
|
|
scaleSelect: document.getElementById('scaleSelect'),
|
|
customScaleOption: document.getElementById('customScaleOption'),
|
|
previous: document.getElementById('previous'),
|
|
next: document.getElementById('next'),
|
|
zoomIn: document.getElementById('zoomIn'),
|
|
zoomOut: document.getElementById('zoomOut'),
|
|
viewFind: document.getElementById('viewFind'),
|
|
openFile: document.getElementById('openFile'),
|
|
print: document.getElementById('print'),
|
|
presentationModeButton: document.getElementById('presentationMode'),
|
|
download: document.getElementById('download'),
|
|
viewBookmark: document.getElementById('viewBookmark'),
|
|
},
|
|
secondaryToolbar: {
|
|
toolbar: document.getElementById('secondaryToolbar'),
|
|
toggleButton: document.getElementById('secondaryToolbarToggle'),
|
|
toolbarButtonContainer:
|
|
document.getElementById('secondaryToolbarButtonContainer'),
|
|
presentationModeButton:
|
|
document.getElementById('secondaryPresentationMode'),
|
|
openFileButton: document.getElementById('secondaryOpenFile'),
|
|
printButton: document.getElementById('secondaryPrint'),
|
|
downloadButton: document.getElementById('secondaryDownload'),
|
|
viewBookmarkButton: document.getElementById('secondaryViewBookmark'),
|
|
firstPageButton: document.getElementById('firstPage'),
|
|
lastPageButton: document.getElementById('lastPage'),
|
|
pageRotateCwButton: document.getElementById('pageRotateCw'),
|
|
pageRotateCcwButton: document.getElementById('pageRotateCcw'),
|
|
cursorSelectToolButton: document.getElementById('cursorSelectTool'),
|
|
cursorHandToolButton: document.getElementById('cursorHandTool'),
|
|
documentPropertiesButton: document.getElementById('documentProperties'),
|
|
},
|
|
fullscreen: {
|
|
contextFirstPage: document.getElementById('contextFirstPage'),
|
|
contextLastPage: document.getElementById('contextLastPage'),
|
|
contextPageRotateCw: document.getElementById('contextPageRotateCw'),
|
|
contextPageRotateCcw: document.getElementById('contextPageRotateCcw'),
|
|
},
|
|
sidebar: {
|
|
// Divs (and sidebar button)
|
|
mainContainer: document.getElementById('mainContainer'),
|
|
outerContainer: document.getElementById('outerContainer'),
|
|
toggleButton: document.getElementById('sidebarToggle'),
|
|
// Buttons
|
|
thumbnailButton: document.getElementById('viewThumbnail'),
|
|
outlineButton: document.getElementById('viewOutline'),
|
|
attachmentsButton: document.getElementById('viewAttachments'),
|
|
// Views
|
|
thumbnailView: document.getElementById('thumbnailView'),
|
|
outlineView: document.getElementById('outlineView'),
|
|
attachmentsView: document.getElementById('attachmentsView'),
|
|
},
|
|
findBar: {
|
|
bar: document.getElementById('findbar'),
|
|
toggleButton: document.getElementById('viewFind'),
|
|
findField: document.getElementById('findInput'),
|
|
highlightAllCheckbox: document.getElementById('findHighlightAll'),
|
|
caseSensitiveCheckbox: document.getElementById('findMatchCase'),
|
|
findMsg: document.getElementById('findMsg'),
|
|
findResultsCount: document.getElementById('findResultsCount'),
|
|
findStatusIcon: document.getElementById('findStatusIcon'),
|
|
findPreviousButton: document.getElementById('findPrevious'),
|
|
findNextButton: document.getElementById('findNext'),
|
|
},
|
|
passwordOverlay: {
|
|
overlayName: 'passwordOverlay',
|
|
container: document.getElementById('passwordOverlay'),
|
|
label: document.getElementById('passwordText'),
|
|
input: document.getElementById('password'),
|
|
submitButton: document.getElementById('passwordSubmit'),
|
|
cancelButton: document.getElementById('passwordCancel'),
|
|
},
|
|
documentProperties: {
|
|
overlayName: 'documentPropertiesOverlay',
|
|
container: document.getElementById('documentPropertiesOverlay'),
|
|
closeButton: document.getElementById('documentPropertiesClose'),
|
|
fields: {
|
|
'fileName': document.getElementById('fileNameField'),
|
|
'fileSize': document.getElementById('fileSizeField'),
|
|
'title': document.getElementById('titleField'),
|
|
'author': document.getElementById('authorField'),
|
|
'subject': document.getElementById('subjectField'),
|
|
'keywords': document.getElementById('keywordsField'),
|
|
'creationDate': document.getElementById('creationDateField'),
|
|
'modificationDate': document.getElementById('modificationDateField'),
|
|
'creator': document.getElementById('creatorField'),
|
|
'producer': document.getElementById('producerField'),
|
|
'version': document.getElementById('versionField'),
|
|
'pageCount': document.getElementById('pageCountField'),
|
|
},
|
|
},
|
|
errorWrapper: {
|
|
container: document.getElementById('errorWrapper'),
|
|
errorMessage: document.getElementById('errorMessage'),
|
|
closeButton: document.getElementById('errorClose'),
|
|
errorMoreInfo: document.getElementById('errorMoreInfo'),
|
|
moreInfoButton: document.getElementById('errorShowMore'),
|
|
lessInfoButton: document.getElementById('errorShowLess'),
|
|
},
|
|
printContainer: document.getElementById('printContainer'),
|
|
openFileInputName: 'fileInput',
|
|
debuggerScriptPath: './debugger.js',
|
|
defaultUrl: DEFAULT_URL,
|
|
};
|
|
}
|
|
|
|
function webViewerLoad() {
|
|
var config = getViewerConfiguration();
|
|
if (typeof PDFJSDev === 'undefined' || !PDFJSDev.test('PRODUCTION')) {
|
|
Promise.all([
|
|
SystemJS.import('pdfjs-web/app'),
|
|
SystemJS.import('pdfjs-web/genericcom'),
|
|
SystemJS.import('pdfjs-web/pdf_print_service'),
|
|
]).then(function (modules) {
|
|
var app = modules[0];
|
|
window.PDFViewerApplication = app.PDFViewerApplication;
|
|
app.PDFViewerApplication.run(config);
|
|
});
|
|
} else {
|
|
window.PDFViewerApplication = pdfjsWebApp.PDFViewerApplication;
|
|
pdfjsWebApp.PDFViewerApplication.run(config);
|
|
}
|
|
}
|
|
|
|
if (document.readyState === 'interactive' ||
|
|
document.readyState === 'complete') {
|
|
webViewerLoad();
|
|
} else {
|
|
document.addEventListener('DOMContentLoaded', webViewerLoad, true);
|
|
}
|