1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-28 23:28:16 +02:00
calixteman 2021-02-11 03:30:37 -08:00 committed by GitHub
parent 3787bd41ef
commit 0479deef4e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 623 additions and 2 deletions

View file

@ -42,7 +42,7 @@ class XFAParser extends XMLParserBase {
if (this._whiteRegex.test(text)) {
return;
}
this._current[$onText](text);
this._current[$onText](text.trim());
}
onCdata(text) {