1
0
Fork 0
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:
Jonas Jenwald 2016-12-10 19:58:36 +01:00
parent 66d2637b3f
commit ad915f8af1
9 changed files with 36 additions and 36 deletions

View file

@ -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;