Updated to current latest stable version of jshint.

This commit is contained in:
Mitar 2014-02-09 23:30:39 -08:00
parent 5c40d686d4
commit 2c82e720b8
10 changed files with 18 additions and 12 deletions

View file

@ -1384,7 +1384,7 @@ var OperatorList = (function OperatorListClosure() {
this.fnArray = [];
}
this.argsArray = [];
this.dependencies = {},
this.dependencies = {};
this.pageIndex = pageIndex;
this.fnIndex = 0;
}
@ -1471,11 +1471,11 @@ var TextState = (function TextStateClosure() {
TextState.prototype = {
initialiseTextObj: function TextState_initialiseTextObj() {
var m = this.textMatrix;
m[0] = 1, m[1] = 0, m[2] = 0, m[3] = 1, m[4] = 0, m[5] = 0;
m[0] = 1; m[1] = 0; m[2] = 0; m[3] = 1; m[4] = 0; m[5] = 0;
},
setTextMatrix: function TextState_setTextMatrix(a, b, c, d, e, f) {
var m = this.textMatrix;
m[0] = a, m[1] = b, m[2] = c, m[3] = d, m[4] = e, m[5] = f;
m[0] = a; m[1] = b; m[2] = c; m[3] = d; m[4] = e; m[5] = f;
},
translateTextMatrix: function TextState_translateTextMatrix(x, y) {
var m = this.textMatrix;