mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 07:08:08 +02:00
commit
7751b83821
1 changed files with 2 additions and 2 deletions
4
pdf.js
4
pdf.js
|
@ -2415,7 +2415,7 @@ var Lexer = (function() {
|
|||
}
|
||||
|
||||
constructor.isSpace = function(ch) {
|
||||
return ch == ' ' || ch == '\t' || ch == '\x0d';
|
||||
return ch == ' ' || ch == '\t' || ch == '\x0d' || ch == '\x0a';
|
||||
};
|
||||
|
||||
// A '1' in this array means the character is white space. A '1' or
|
||||
|
@ -4184,7 +4184,7 @@ var PartialEvaluator = (function() {
|
|||
if (typeNum == 1) {
|
||||
patternName.code = this.evaluate(pattern, xref,
|
||||
dict.get('Resources'),
|
||||
fonts);
|
||||
fonts, images);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue