Minimize modifications to the original viewer files from pdf.js
This commit is contained in:
parent
980f3db55c
commit
6f48c4d399
2 changed files with 12 additions and 54 deletions
|
@ -1,5 +1,5 @@
|
||||||
--- viewer/viewer.html.orig 2014-01-20 16:22:49.000000000 +0100
|
--- viewer/viewer.html.orig 2014-03-07 11:40:58.000000000 +0100
|
||||||
+++ viewer/viewer.html 2014-01-20 16:38:37.000000000 +0100
|
+++ viewer/viewer.html 2014-03-07 11:44:02.000000000 +0100
|
||||||
@@ -31,12 +31,12 @@
|
@@ -31,12 +31,12 @@
|
||||||
<!-- This snippet is used in production, see Makefile -->
|
<!-- This snippet is used in production, see Makefile -->
|
||||||
<link rel="resource" type="application/l10n" href="locale/locale.properties"/>
|
<link rel="resource" type="application/l10n" href="locale/locale.properties"/>
|
||||||
|
@ -61,8 +61,8 @@
|
||||||
<span data-l10n-id="bookmark_label">Current View</span>
|
<span data-l10n-id="bookmark_label">Current View</span>
|
||||||
</a>
|
</a>
|
||||||
|
|
||||||
--- viewer/viewer.js.orig 2014-01-20 16:22:49.000000000 +0100
|
--- viewer/viewer.js.orig 2014-03-07 11:40:40.000000000 +0100
|
||||||
+++ viewer/viewer.js 2014-01-20 16:32:24.000000000 +0100
|
+++ viewer/viewer.js 2014-03-07 11:32:44.000000000 +0100
|
||||||
@@ -23,7 +23,7 @@
|
@@ -23,7 +23,7 @@
|
||||||
|
|
||||||
'use strict';
|
'use strict';
|
||||||
|
@ -81,45 +81,3 @@
|
||||||
|
|
||||||
var mozL10n = document.mozL10n || document.webL10n;
|
var mozL10n = document.mozL10n || document.webL10n;
|
||||||
|
|
||||||
@@ -1581,9 +1581,9 @@
|
|
||||||
// (except for toggleHandTool, hand_tool.js is responsible for it):
|
|
||||||
{ element: this.presentationModeButton,
|
|
||||||
handler: this.presentationModeClick },
|
|
||||||
- { element: this.openFile, handler: this.openFileClick },
|
|
||||||
+ //{ element: this.openFile, handler: this.openFileClick },
|
|
||||||
{ element: this.print, handler: this.printClick },
|
|
||||||
- { element: this.download, handler: this.downloadClick },
|
|
||||||
+ //{ element: this.download, handler: this.downloadClick },
|
|
||||||
{ element: this.firstPage, handler: this.firstPageClick },
|
|
||||||
{ element: this.lastPage, handler: this.lastPageClick },
|
|
||||||
{ element: this.pageRotateCw, handler: this.pageRotateCwClick },
|
|
||||||
@@ -4806,8 +4806,8 @@
|
|
||||||
document.body.appendChild(fileInput);
|
|
||||||
|
|
||||||
if (!window.File || !window.FileReader || !window.FileList || !window.Blob) {
|
|
||||||
- document.getElementById('openFile').setAttribute('hidden', 'true');
|
|
||||||
- document.getElementById('secondaryOpenFile').setAttribute('hidden', 'true');
|
|
||||||
+ //document.getElementById('openFile').setAttribute('hidden', 'true');
|
|
||||||
+ //document.getElementById('secondaryOpenFile').setAttribute('hidden', 'true');
|
|
||||||
} else {
|
|
||||||
document.getElementById('fileInput').value = null;
|
|
||||||
}
|
|
||||||
@@ -4970,14 +4970,14 @@
|
|
||||||
document.getElementById('presentationMode').addEventListener('click',
|
|
||||||
SecondaryToolbar.presentationModeClick.bind(SecondaryToolbar));
|
|
||||||
|
|
||||||
- document.getElementById('openFile').addEventListener('click',
|
|
||||||
- SecondaryToolbar.openFileClick.bind(SecondaryToolbar));
|
|
||||||
+// document.getElementById('openFile').addEventListener('click',
|
|
||||||
+// SecondaryToolbar.openFileClick.bind(SecondaryToolbar));
|
|
||||||
|
|
||||||
document.getElementById('print').addEventListener('click',
|
|
||||||
SecondaryToolbar.printClick.bind(SecondaryToolbar));
|
|
||||||
|
|
||||||
- document.getElementById('download').addEventListener('click',
|
|
||||||
- SecondaryToolbar.downloadClick.bind(SecondaryToolbar));
|
|
||||||
+// document.getElementById('download').addEventListener('click',
|
|
||||||
+// SecondaryToolbar.downloadClick.bind(SecondaryToolbar));
|
|
||||||
|
|
||||||
|
|
||||||
PDFView.open(file, 0);
|
|
||||||
|
|
|
@ -1581,9 +1581,9 @@ var SecondaryToolbar = {
|
||||||
// (except for toggleHandTool, hand_tool.js is responsible for it):
|
// (except for toggleHandTool, hand_tool.js is responsible for it):
|
||||||
{ element: this.presentationModeButton,
|
{ element: this.presentationModeButton,
|
||||||
handler: this.presentationModeClick },
|
handler: this.presentationModeClick },
|
||||||
//{ element: this.openFile, handler: this.openFileClick },
|
{ element: this.openFile, handler: this.openFileClick },
|
||||||
{ element: this.print, handler: this.printClick },
|
{ element: this.print, handler: this.printClick },
|
||||||
//{ element: this.download, handler: this.downloadClick },
|
{ element: this.download, handler: this.downloadClick },
|
||||||
{ element: this.firstPage, handler: this.firstPageClick },
|
{ element: this.firstPage, handler: this.firstPageClick },
|
||||||
{ element: this.lastPage, handler: this.lastPageClick },
|
{ element: this.lastPage, handler: this.lastPageClick },
|
||||||
{ element: this.pageRotateCw, handler: this.pageRotateCwClick },
|
{ element: this.pageRotateCw, handler: this.pageRotateCwClick },
|
||||||
|
@ -4806,8 +4806,8 @@ document.addEventListener('DOMContentLoaded', function webViewerLoad(evt) {
|
||||||
document.body.appendChild(fileInput);
|
document.body.appendChild(fileInput);
|
||||||
|
|
||||||
if (!window.File || !window.FileReader || !window.FileList || !window.Blob) {
|
if (!window.File || !window.FileReader || !window.FileList || !window.Blob) {
|
||||||
//document.getElementById('openFile').setAttribute('hidden', 'true');
|
document.getElementById('openFile').setAttribute('hidden', 'true');
|
||||||
//document.getElementById('secondaryOpenFile').setAttribute('hidden', 'true');
|
document.getElementById('secondaryOpenFile').setAttribute('hidden', 'true');
|
||||||
} else {
|
} else {
|
||||||
document.getElementById('fileInput').value = null;
|
document.getElementById('fileInput').value = null;
|
||||||
}
|
}
|
||||||
|
@ -4970,14 +4970,14 @@ document.addEventListener('DOMContentLoaded', function webViewerLoad(evt) {
|
||||||
document.getElementById('presentationMode').addEventListener('click',
|
document.getElementById('presentationMode').addEventListener('click',
|
||||||
SecondaryToolbar.presentationModeClick.bind(SecondaryToolbar));
|
SecondaryToolbar.presentationModeClick.bind(SecondaryToolbar));
|
||||||
|
|
||||||
// document.getElementById('openFile').addEventListener('click',
|
document.getElementById('openFile').addEventListener('click',
|
||||||
// SecondaryToolbar.openFileClick.bind(SecondaryToolbar));
|
SecondaryToolbar.openFileClick.bind(SecondaryToolbar));
|
||||||
|
|
||||||
document.getElementById('print').addEventListener('click',
|
document.getElementById('print').addEventListener('click',
|
||||||
SecondaryToolbar.printClick.bind(SecondaryToolbar));
|
SecondaryToolbar.printClick.bind(SecondaryToolbar));
|
||||||
|
|
||||||
// document.getElementById('download').addEventListener('click',
|
document.getElementById('download').addEventListener('click',
|
||||||
// SecondaryToolbar.downloadClick.bind(SecondaryToolbar));
|
SecondaryToolbar.downloadClick.bind(SecondaryToolbar));
|
||||||
|
|
||||||
|
|
||||||
PDFView.open(file, 0);
|
PDFView.open(file, 0);
|
||||||
|
|
Loading…
Add table
Reference in a new issue