1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-28 23:28:16 +02:00

Merge pull request #13693 from calixteman/textfields

XFA - Enable disabled fields (bug 1719464)
This commit is contained in:
calixteman 2021-07-07 21:43:21 +02:00 committed by GitHub
commit fbd2f28618
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 21 additions and 6 deletions

View file

@ -541,6 +541,8 @@ function fixTextIndent(styles) {
function setAccess(node, classNames) {
switch (node.access) {
case "nonInteractive":
classNames.push("xfaNonInteractive");
break;
case "readOnly":
classNames.push("xfaReadOnly");
break;