Async getAnnotations(); hide map and xref for Dict

This commit is contained in:
Yury Delendik 2012-04-14 13:54:31 -07:00
parent 19c0c6a983
commit 42911f1fc9
4 changed files with 63 additions and 38 deletions

View file

@ -466,7 +466,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
args = [];
} else if (obj != null) {
assertWellFormed(args.length <= 33, 'Too many arguments');
args.push(obj);
args.push(obj instanceof Dict ? obj.getAll() : obj);
}
}