|
@@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
|
|
// 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.5.448';
|
|
|
|
-var pdfjsBuild = 'bf6f5d1';
|
|
|
|
|
|
+var pdfjsVersion = '1.5.450';
|
|
|
|
+var pdfjsBuild = '6b05cfd';
|
|
|
|
|
|
var pdfjsFilePath =
|
|
var pdfjsFilePath =
|
|
typeof document !== 'undefined' && document.currentScript ?
|
|
typeof document !== 'undefined' && document.currentScript ?
|
|
@@ -24108,6 +24108,7 @@ exports.LZWStream = LZWStream;
|
|
|
|
|
|
var AnnotationBorderStyleType = sharedUtil.AnnotationBorderStyleType;
|
|
var AnnotationBorderStyleType = sharedUtil.AnnotationBorderStyleType;
|
|
var AnnotationType = sharedUtil.AnnotationType;
|
|
var AnnotationType = sharedUtil.AnnotationType;
|
|
|
|
+var isInt = sharedUtil.isInt;
|
|
var Util = sharedUtil.Util;
|
|
var Util = sharedUtil.Util;
|
|
var addLinkAttributes = displayDOMUtils.addLinkAttributes;
|
|
var addLinkAttributes = displayDOMUtils.addLinkAttributes;
|
|
var LinkTarget = displayDOMUtils.LinkTarget;
|
|
var LinkTarget = displayDOMUtils.LinkTarget;
|
|
@@ -24506,6 +24507,8 @@ var WidgetAnnotationElement = (function WidgetAnnotationElementClosure() {
|
|
*/
|
|
*/
|
|
var TextWidgetAnnotationElement = (
|
|
var TextWidgetAnnotationElement = (
|
|
function TextWidgetAnnotationElementClosure() {
|
|
function TextWidgetAnnotationElementClosure() {
|
|
|
|
+ var TEXT_ALIGNMENT = ['left', 'center', 'right'];
|
|
|
|
+
|
|
function TextWidgetAnnotationElement(parameters) {
|
|
function TextWidgetAnnotationElement(parameters) {
|
|
WidgetAnnotationElement.call(this, parameters);
|
|
WidgetAnnotationElement.call(this, parameters);
|
|
}
|
|
}
|
|
@@ -24521,26 +24524,33 @@ var TextWidgetAnnotationElement = (
|
|
render: function TextWidgetAnnotationElement_render() {
|
|
render: function TextWidgetAnnotationElement_render() {
|
|
this.container.className = 'textWidgetAnnotation';
|
|
this.container.className = 'textWidgetAnnotation';
|
|
|
|
|
|
|
|
+ var element = null;
|
|
if (this.renderInteractiveForms) {
|
|
if (this.renderInteractiveForms) {
|
|
- var input = document.createElement('input');
|
|
|
|
- input.type = 'text';
|
|
|
|
- input.value = this.data.fieldValue;
|
|
|
|
|
|
+ element = document.createElement('input');
|
|
|
|
+ element.type = 'text';
|
|
|
|
+ element.value = this.data.fieldValue;
|
|
|
|
|
|
- this.container.appendChild(input);
|
|
|
|
|
|
+ if (isInt(this.data.maxLen)) {
|
|
|
|
+ element.maxLength = this.data.maxLen;
|
|
|
|
+ }
|
|
} else {
|
|
} else {
|
|
- var content = document.createElement('div');
|
|
|
|
- content.textContent = this.data.fieldValue;
|
|
|
|
- var textAlignment = this.data.textAlignment;
|
|
|
|
- content.style.textAlign = ['left', 'center', 'right'][textAlignment];
|
|
|
|
- content.style.verticalAlign = 'middle';
|
|
|
|
- content.style.display = 'table-cell';
|
|
|
|
|
|
+ element = document.createElement('div');
|
|
|
|
+ element.textContent = this.data.fieldValue;
|
|
|
|
+ element.style.verticalAlign = 'middle';
|
|
|
|
+ element.style.display = 'table-cell';
|
|
|
|
|
|
- var font = (this.data.fontRefName ?
|
|
|
|
- this.page.commonObjs.getData(this.data.fontRefName) : null);
|
|
|
|
- this._setTextStyle(content, font);
|
|
|
|
|
|
+ var font = null;
|
|
|
|
+ if (this.data.fontRefName) {
|
|
|
|
+ font = this.page.commonObjs.getData(this.data.fontRefName);
|
|
|
|
+ }
|
|
|
|
+ this._setTextStyle(element, font);
|
|
|
|
+ }
|
|
|
|
|
|
- this.container.appendChild(content);
|
|
|
|
|
|
+ if (isInt(this.data.textAlignment)) {
|
|
|
|
+ element.style.textAlign = TEXT_ALIGNMENT[this.data.textAlignment];
|
|
}
|
|
}
|
|
|
|
+
|
|
|
|
+ this.container.appendChild(element);
|
|
return this.container;
|
|
return this.container;
|
|
},
|
|
},
|
|
|
|
|