mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Don't stop executeIRQueue if there is no continueCallback. What a wonderful world it would be with generators :(
This commit is contained in:
parent
0f6bf30228
commit
20d8a13c9e
1 changed files with 5 additions and 2 deletions
7
pdf.js
7
pdf.js
|
@ -4922,10 +4922,13 @@ var CanvasGraphics = (function() {
|
|||
}
|
||||
// If the execution took longer then a certain amount of time, shedule
|
||||
// to continue exeution after a short delay.
|
||||
else if ((Date.now() - startTime) > kExecutionTime) {
|
||||
// However, this is only possible if a 'continueCallback' is passed in.
|
||||
else if (continueCallback &&
|
||||
(Date.now() - startTime) > kExecutionTime) {
|
||||
setTimeout(continueCallback, 0);
|
||||
return i;
|
||||
}
|
||||
}
|
||||
|
||||
// If the IRQueue isn't executed completly yet OR the execution time
|
||||
// was short enough, do another execution round.
|
||||
} while (true);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue