|
|
@ -24,8 +24,8 @@ |
|
|
|
}(this, function (exports) { |
|
|
|
}(this, function (exports) { |
|
|
|
// Use strict in our context only - users might not want it
|
|
|
|
// Use strict in our context only - users might not want it
|
|
|
|
'use strict'; |
|
|
|
'use strict'; |
|
|
|
var pdfjsVersion = '1.6.293'; |
|
|
|
var pdfjsVersion = '1.6.295'; |
|
|
|
var pdfjsBuild = '9295114'; |
|
|
|
var pdfjsBuild = '6e22b32'; |
|
|
|
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null; |
|
|
|
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null; |
|
|
|
var pdfjsLibs = {}; |
|
|
|
var pdfjsLibs = {}; |
|
|
|
(function pdfjsWrapper() { |
|
|
|
(function pdfjsWrapper() { |
|
|
@ -53403,6 +53403,7 @@ |
|
|
|
var outlineItem = { |
|
|
|
var outlineItem = { |
|
|
|
dest: data.dest, |
|
|
|
dest: data.dest, |
|
|
|
url: data.url, |
|
|
|
url: data.url, |
|
|
|
|
|
|
|
unsafeUrl: data.unsafeUrl, |
|
|
|
newWindow: data.newWindow, |
|
|
|
newWindow: data.newWindow, |
|
|
|
title: stringToPDFString(title), |
|
|
|
title: stringToPDFString(title), |
|
|
|
color: rgbColor, |
|
|
|
color: rgbColor, |
|
|
@ -53844,6 +53845,10 @@ |
|
|
|
case 'GoTo': |
|
|
|
case 'GoTo': |
|
|
|
dest = action.get('D'); |
|
|
|
dest = action.get('D'); |
|
|
|
break; |
|
|
|
break; |
|
|
|
|
|
|
|
case 'Launch': |
|
|
|
|
|
|
|
// We neither want, nor can, support arbitrary 'Launch' actions.
|
|
|
|
|
|
|
|
// However, in practice they are mostly used for linking to other PDF
|
|
|
|
|
|
|
|
// files, which we thus attempt to support (utilizing `docBaseUrl`).
|
|
|
|
case 'GoToR': |
|
|
|
case 'GoToR': |
|
|
|
var urlDict = action.get('F'); |
|
|
|
var urlDict = action.get('F'); |
|
|
|
if (isDict(urlDict)) { |
|
|
|
if (isDict(urlDict)) { |
|
|
|