|
|
|
@ -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.4.83'; |
|
|
|
|
var pdfjsBuild = '0629fd0'; |
|
|
|
|
var pdfjsVersion = '1.4.85'; |
|
|
|
|
var pdfjsBuild = 'ebe6fb2'; |
|
|
|
|
|
|
|
|
|
var pdfjsFilePath = |
|
|
|
|
typeof document !== 'undefined' && document.currentScript ? |
|
|
|
@ -18997,7 +18997,8 @@ var PopupElement = (function PopupElementClosure() {
@@ -18997,7 +18997,8 @@ var PopupElement = (function PopupElementClosure() {
|
|
|
|
|
var HighlightAnnotationElement = ( |
|
|
|
|
function HighlightAnnotationElementClosure() { |
|
|
|
|
function HighlightAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(HighlightAnnotationElement, AnnotationElement, { |
|
|
|
@ -19024,7 +19025,8 @@ var HighlightAnnotationElement = (
@@ -19024,7 +19025,8 @@ var HighlightAnnotationElement = (
|
|
|
|
|
var UnderlineAnnotationElement = ( |
|
|
|
|
function UnderlineAnnotationElementClosure() { |
|
|
|
|
function UnderlineAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(UnderlineAnnotationElement, AnnotationElement, { |
|
|
|
@ -19050,7 +19052,8 @@ var UnderlineAnnotationElement = (
@@ -19050,7 +19052,8 @@ var UnderlineAnnotationElement = (
|
|
|
|
|
*/ |
|
|
|
|
var SquigglyAnnotationElement = (function SquigglyAnnotationElementClosure() { |
|
|
|
|
function SquigglyAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(SquigglyAnnotationElement, AnnotationElement, { |
|
|
|
@ -19077,7 +19080,8 @@ var SquigglyAnnotationElement = (function SquigglyAnnotationElementClosure() {
@@ -19077,7 +19080,8 @@ var SquigglyAnnotationElement = (function SquigglyAnnotationElementClosure() {
|
|
|
|
|
var StrikeOutAnnotationElement = ( |
|
|
|
|
function StrikeOutAnnotationElementClosure() { |
|
|
|
|
function StrikeOutAnnotationElement(parameters) { |
|
|
|
|
AnnotationElement.call(this, parameters, true); |
|
|
|
|
var isRenderable = parameters.data.hasPopup; |
|
|
|
|
AnnotationElement.call(this, parameters, isRenderable); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Util.inherit(StrikeOutAnnotationElement, AnnotationElement, { |
|
|
|
@ -48605,6 +48609,7 @@ var HighlightAnnotation = (function HighlightAnnotationClosure() {
@@ -48605,6 +48609,7 @@ var HighlightAnnotation = (function HighlightAnnotationClosure() {
|
|
|
|
|
Annotation.call(this, parameters); |
|
|
|
|
|
|
|
|
|
this.data.annotationType = AnnotationType.HIGHLIGHT; |
|
|
|
|
this.data.hasPopup = parameters.dict.has('Popup'); |
|
|
|
|
|
|
|
|
|
// PDF viewers completely ignore any border styles.
|
|
|
|
|
this.data.borderStyle.setWidth(0); |
|
|
|
@ -48620,6 +48625,7 @@ var UnderlineAnnotation = (function UnderlineAnnotationClosure() {
@@ -48620,6 +48625,7 @@ var UnderlineAnnotation = (function UnderlineAnnotationClosure() {
|
|
|
|
|
Annotation.call(this, parameters); |
|
|
|
|
|
|
|
|
|
this.data.annotationType = AnnotationType.UNDERLINE; |
|
|
|
|
this.data.hasPopup = parameters.dict.has('Popup'); |
|
|
|
|
|
|
|
|
|
// PDF viewers completely ignore any border styles.
|
|
|
|
|
this.data.borderStyle.setWidth(0); |
|
|
|
@ -48635,6 +48641,7 @@ var SquigglyAnnotation = (function SquigglyAnnotationClosure() {
@@ -48635,6 +48641,7 @@ var SquigglyAnnotation = (function SquigglyAnnotationClosure() {
|
|
|
|
|
Annotation.call(this, parameters); |
|
|
|
|
|
|
|
|
|
this.data.annotationType = AnnotationType.SQUIGGLY; |
|
|
|
|
this.data.hasPopup = parameters.dict.has('Popup'); |
|
|
|
|
|
|
|
|
|
// PDF viewers completely ignore any border styles.
|
|
|
|
|
this.data.borderStyle.setWidth(0); |
|
|
|
@ -48650,6 +48657,7 @@ var StrikeOutAnnotation = (function StrikeOutAnnotationClosure() {
@@ -48650,6 +48657,7 @@ var StrikeOutAnnotation = (function StrikeOutAnnotationClosure() {
|
|
|
|
|
Annotation.call(this, parameters); |
|
|
|
|
|
|
|
|
|
this.data.annotationType = AnnotationType.STRIKEOUT; |
|
|
|
|
this.data.hasPopup = parameters.dict.has('Popup'); |
|
|
|
|
|
|
|
|
|
// PDF viewers completely ignore any border styles.
|
|
|
|
|
this.data.borderStyle.setWidth(0); |
|
|
|
|