1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Handle annotations with no resources.

This commit is contained in:
Brendan Dahl 2013-06-25 14:22:03 -07:00
parent a2678c51d2
commit e62ab300f1
3 changed files with 11 additions and 0 deletions

View file

@ -142,6 +142,10 @@ var Annotation = (function AnnotationClosure() {
loadResources: function(keys) {
var promise = new Promise();
this.appearance.dict.getAsync('Resources').then(function(resources) {
if (!resources) {
promise.resolve();
return;
}
var objectLoader = new ObjectLoader(resources.map,
keys,
resources.xref);