Merge pull request #9757 from timvandermeij/backout
Backout of pull request #9345
This commit is contained in:
commit
c8b4e6ec9d
14
web/app.js
14
web/app.js
@ -15,10 +15,10 @@
|
||||
/* globals PDFBug, Stats */
|
||||
|
||||
import {
|
||||
animationStarted, DEFAULT_SCALE_VALUE, getPDFFileNameFromURL, isFileSchema,
|
||||
isValidRotation, MAX_SCALE, MIN_SCALE, noContextMenuHandler,
|
||||
normalizeWheelEventDelta, parseQueryString, PresentationModeState,
|
||||
ProgressBar, RendererType, TextLayerMode
|
||||
animationStarted, DEFAULT_SCALE_VALUE, getPDFFileNameFromURL, isValidRotation,
|
||||
MAX_SCALE, MIN_SCALE, noContextMenuHandler, normalizeWheelEventDelta,
|
||||
parseQueryString, PresentationModeState, ProgressBar, RendererType,
|
||||
TextLayerMode
|
||||
} from './ui_utils';
|
||||
import {
|
||||
build, createBlob, getDocument, getFilenameFromUrl, GlobalWorkerOptions,
|
||||
@ -745,12 +745,6 @@ let PDFViewerApplication = {
|
||||
}
|
||||
}
|
||||
|
||||
if (this.url && isFileSchema(this.url)) {
|
||||
let appConfig = this.appConfig;
|
||||
appConfig.toolbar.download.setAttribute('hidden', 'true');
|
||||
appConfig.secondaryToolbar.downloadButton.setAttribute('hidden', 'true');
|
||||
}
|
||||
|
||||
let loadingTask = getDocument(parameters);
|
||||
this.pdfLoadingTask = loadingTask;
|
||||
|
||||
|
@ -536,14 +536,6 @@ function noContextMenuHandler(evt) {
|
||||
evt.preventDefault();
|
||||
}
|
||||
|
||||
function isFileSchema(url) {
|
||||
let i = 0, ii = url.length;
|
||||
while (i < ii && url[i].trim() === '') {
|
||||
i++;
|
||||
}
|
||||
return url.substr(i, 7).toLowerCase() === 'file://';
|
||||
}
|
||||
|
||||
function isDataSchema(url) {
|
||||
let i = 0, ii = url.length;
|
||||
while (i < ii && url[i].trim() === '') {
|
||||
@ -843,7 +835,6 @@ export {
|
||||
VERTICAL_PADDING,
|
||||
isValidRotation,
|
||||
isPortraitOrientation,
|
||||
isFileSchema,
|
||||
cloneObj,
|
||||
PresentationModeState,
|
||||
RendererType,
|
||||
|
Loading…
Reference in New Issue
Block a user