mirror of
https://github.com/zen-browser/pdf.js.git
synced 2025-07-09 09:45:42 +02:00
Merge pull request #2945 from mduan/annotation
Add support for appearance streams in annotations
This commit is contained in:
commit
5839fef84c
6 changed files with 218 additions and 5 deletions
|
@ -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;
|
||||
})();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue