|
@@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {};
|
|
(typeof window !== 'undefined' ? window : this).PDFJS = {};
|
|
}
|
|
}
|
|
|
|
|
|
-PDFJS.version = '1.1.307';
|
|
|
|
-PDFJS.build = '6dfe19d';
|
|
|
|
|
|
+PDFJS.version = '1.1.309';
|
|
|
|
+PDFJS.build = '4b6e272';
|
|
|
|
|
|
(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
|
|
@@ -37488,6 +37488,11 @@ var Lexer = (function LexerClosure() {
|
|
if (ch === 0x2D) { // '-'
|
|
if (ch === 0x2D) { // '-'
|
|
sign = -1;
|
|
sign = -1;
|
|
ch = this.nextChar();
|
|
ch = this.nextChar();
|
|
|
|
+
|
|
|
|
+ if (ch === 0x2D) { // '-'
|
|
|
|
+ // Ignore double negative (this is consistent with Adobe Reader).
|
|
|
|
+ ch = this.nextChar();
|
|
|
|
+ }
|
|
} else if (ch === 0x2B) { // '+'
|
|
} else if (ch === 0x2B) { // '+'
|
|
ch = this.nextChar();
|
|
ch = this.nextChar();
|
|
}
|
|
}
|