mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-26 01:58:06 +02:00
Fix errors reported by the comma-spacing
ESLint rule
http://eslint.org/docs/rules/comma-spacing
This commit is contained in:
parent
66d2637b3f
commit
ad915f8af1
9 changed files with 36 additions and 36 deletions
|
@ -435,7 +435,7 @@ var Annotation = (function AnnotationClosure() {
|
|||
// Properties
|
||||
]);
|
||||
var bbox = appearanceDict.getArray('BBox') || [0, 0, 1, 1];
|
||||
var matrix = appearanceDict.getArray('Matrix') || [1, 0, 0, 1, 0 ,0];
|
||||
var matrix = appearanceDict.getArray('Matrix') || [1, 0, 0, 1, 0, 0];
|
||||
var transform = getTransformMatrix(data.rect, bbox, matrix);
|
||||
var self = this;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue