Browse Source

PDF.js version 1.1.309

master v1.1.309
Pdf Bot 10 years ago
parent
commit
26eb2c9042
  1. 2
      bower.json
  2. 9
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 9
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "pdfjs-dist",
"version": "1.1.307",
"version": "1.1.309",
"main": [
"build/pdf.js",
"build/pdf.worker.js"

9
build/pdf.combined.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.1.307';
PDFJS.build = '6dfe19d';
PDFJS.version = '1.1.309';
PDFJS.build = '4b6e272';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -37488,6 +37488,11 @@ var Lexer = (function LexerClosure() { @@ -37488,6 +37488,11 @@ var Lexer = (function LexerClosure() {
if (ch === 0x2D) { // '-'
sign = -1;
ch = this.nextChar();
if (ch === 0x2D) { // '-'
// Ignore double negative (this is consistent with Adobe Reader).
ch = this.nextChar();
}
} else if (ch === 0x2B) { // '+'
ch = this.nextChar();
}

4
build/pdf.js

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.1.307';
PDFJS.build = '6dfe19d';
PDFJS.version = '1.1.309';
PDFJS.build = '4b6e272';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

9
build/pdf.worker.js vendored

@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') { @@ -22,8 +22,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.1.307';
PDFJS.build = '6dfe19d';
PDFJS.version = '1.1.309';
PDFJS.build = '4b6e272';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it
@ -31084,6 +31084,11 @@ var Lexer = (function LexerClosure() { @@ -31084,6 +31084,11 @@ var Lexer = (function LexerClosure() {
if (ch === 0x2D) { // '-'
sign = -1;
ch = this.nextChar();
if (ch === 0x2D) { // '-'
// Ignore double negative (this is consistent with Adobe Reader).
ch = this.nextChar();
}
} else if (ch === 0x2B) { // '+'
ch = this.nextChar();
}

2
package.json

@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
{
"name": "pdfjs-dist",
"version": "1.1.307",
"version": "1.1.309",
"description": "Generic build of Mozilla's PDF.js library.",
"keywords": [
"Mozilla",

Loading…
Cancel
Save