|
|
|
@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
@@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
|
|
|
|
|
// Use strict in our context only - users might not want it
|
|
|
|
|
'use strict'; |
|
|
|
|
|
|
|
|
|
var pdfjsVersion = '1.5.190'; |
|
|
|
|
var pdfjsBuild = 'ee4d8ef'; |
|
|
|
|
var pdfjsVersion = '1.5.192'; |
|
|
|
|
var pdfjsBuild = 'f13119f'; |
|
|
|
|
|
|
|
|
|
var pdfjsFilePath = |
|
|
|
|
typeof document !== 'undefined' && document.currentScript ? |
|
|
|
@ -39900,13 +39900,12 @@ var WorkerTransport = (function WorkerTransportClosure() {
@@ -39900,13 +39900,12 @@ var WorkerTransport = (function WorkerTransportClosure() {
|
|
|
|
|
case 'Font': |
|
|
|
|
var exportedData = data[2]; |
|
|
|
|
|
|
|
|
|
var font; |
|
|
|
|
if ('error' in exportedData) { |
|
|
|
|
var error = exportedData.error; |
|
|
|
|
warn('Error during font loading: ' + error); |
|
|
|
|
this.commonObjs.resolve(id, error); |
|
|
|
|
var exportedError = exportedData.error; |
|
|
|
|
warn('Error during font loading: ' + exportedError); |
|
|
|
|
this.commonObjs.resolve(id, exportedError); |
|
|
|
|
break; |
|
|
|
|
} else { |
|
|
|
|
} |
|
|
|
|
var fontRegistry = null; |
|
|
|
|
if (getDefaultSetting('pdfBug') && globalScope.FontInspector && |
|
|
|
|
globalScope['FontInspector'].enabled) { |
|
|
|
@ -39916,12 +39915,11 @@ var WorkerTransport = (function WorkerTransportClosure() {
@@ -39916,12 +39915,11 @@ var WorkerTransport = (function WorkerTransportClosure() {
|
|
|
|
|
} |
|
|
|
|
}; |
|
|
|
|
} |
|
|
|
|
font = new FontFaceObject(exportedData, { |
|
|
|
|
var font = new FontFaceObject(exportedData, { |
|
|
|
|
isEvalSuported: getDefaultSetting('isEvalSupported'), |
|
|
|
|
disableFontFace: getDefaultSetting('disableFontFace'), |
|
|
|
|
fontRegistry: fontRegistry |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
this.fontLoader.bind( |
|
|
|
|
[font], |
|
|
|
|