mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-20 07:08:08 +02:00
Merge remote branch 'upstream/master'
This commit is contained in:
commit
d02a84ea5f
2 changed files with 11 additions and 4 deletions
9
pdf.js
9
pdf.js
|
@ -208,6 +208,11 @@ var DecodeStream = (function() {
|
|||
this.readBlock();
|
||||
|
||||
var end = this.bufferLength;
|
||||
|
||||
// checking if bufferLength is still 0 then
|
||||
// the buffer has to be initialized
|
||||
if (!end)
|
||||
this.buffer = new Uint8Array(0);
|
||||
}
|
||||
|
||||
this.pos = end;
|
||||
|
@ -3340,11 +3345,11 @@ var Page = (function() {
|
|||
var xref = this.xref;
|
||||
var content = xref.fetchIfRef(this.content);
|
||||
var resources = xref.fetchIfRef(this.resources);
|
||||
if (IsArray(this.content)) {
|
||||
if (IsArray(content)) {
|
||||
// fetching items
|
||||
var i, n = content.length;
|
||||
for (i = 0; i < n; ++i)
|
||||
content[i] = xref.fetchIfRef(this.content[i]);
|
||||
content[i] = xref.fetchIfRef(content[i]);
|
||||
content = new StreamsSequenceStream(content);
|
||||
}
|
||||
this.code = gfx.compile(content, xref, resources, fonts, images);
|
||||
|
|
|
@ -221,6 +221,8 @@ function checkScrolling() {
|
|||
}
|
||||
|
||||
function log(str) {
|
||||
stdout.innerHTML += str;
|
||||
checkScrolling();
|
||||
stdout.insertAdjacentHTML('BeforeEnd', str);
|
||||
|
||||
if (str.lastIndexOf('\n') >= 0)
|
||||
checkScrolling();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue