Merge pull request #2945 from mduan/annotation

Add support for appearance streams in annotations
This commit is contained in:
Yury Delendik 2013-04-01 19:42:17 -07:00
commit 5839fef84c
6 changed files with 218 additions and 5 deletions

View file

@ -358,6 +358,10 @@ var Util = PDFJS.Util = (function UtilClosure() {
return num < 0 ? -1 : 1;
};
Util.concatenateToArray = function concatenateToArray(arr1, arr2) {
return Array.prototype.push.apply(arr1, arr2);
};
return Util;
})();