|
@@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {};
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {};
|
|
}
|
|
}
|
|
|
|
|
|
-PDFJS.version = '1.1.274';
|
|
|
|
-PDFJS.build = '5af49f8';
|
|
|
|
|
|
+PDFJS.version = '1.1.276';
|
|
|
|
+PDFJS.build = '6c1906f';
|
|
|
|
|
|
(function pdfjsWrapper() {
|
|
(function pdfjsWrapper() {
|
|
// Use strict in our context only - users might not want it
|
|
// Use strict in our context only - users might not want it
|
|
@@ -37655,9 +37655,8 @@ var Lexer = (function LexerClosure() {
|
|
strBuf.push(String.fromCharCode(ch));
|
|
strBuf.push(String.fromCharCode(ch));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
- if (strBuf.length > 128) {
|
|
|
|
- error('Warning: name token is longer than allowed by the spec: ' +
|
|
|
|
- strBuf.length);
|
|
|
|
|
|
+ if (strBuf.length > 127) {
|
|
|
|
+ warn('name token is longer than allowed by the spec: ' + strBuf.length);
|
|
}
|
|
}
|
|
return Name.get(strBuf.join(''));
|
|
return Name.get(strBuf.join(''));
|
|
},
|
|
},
|