Browse Source

PDF.js version 1.6.232 - See mozilla/pdf.js@c457e6015dcaae7efb4d2185275f5d855515f293

master v1.6.232
Pdf Bot 9 years ago
parent
commit
405a0a784e
  1. 2
      bower.json
  2. 6
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 6
      build/pdf.worker.js
  5. 2
      package.json

2
bower.json

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

6
build/pdf.combined.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';
var pdfjsVersion = '1.6.230'; var pdfjsVersion = '1.6.232';
var pdfjsBuild = '8c5b925'; var pdfjsBuild = 'c457e60';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -47420,7 +47420,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
for (var j = 0, jj = items.length; j < jj; j++) { for (var j = 0, jj = items.length; j < jj; j++) {
if (typeof items[j] === 'string') { if (typeof items[j] === 'string') {
buildTextContentItem(items[j]); buildTextContentItem(items[j]);
} else { } else if (isNum(items[j])) {
ensureTextContentItem(); ensureTextContentItem();
// PDF Specification 5.3.2 states: // PDF Specification 5.3.2 states:

4
build/pdf.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdf = {}));
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';
var pdfjsVersion = '1.6.230'; var pdfjsVersion = '1.6.232';
var pdfjsBuild = '8c5b925'; var pdfjsBuild = 'c457e60';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?

6
build/pdf.worker.js vendored

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfWorker = {}));
// Use strict in our context only - users might not want it // Use strict in our context only - users might not want it
'use strict'; 'use strict';
var pdfjsVersion = '1.6.230'; var pdfjsVersion = '1.6.232';
var pdfjsBuild = '8c5b925'; var pdfjsBuild = 'c457e60';
var pdfjsFilePath = var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ? typeof document !== 'undefined' && document.currentScript ?
@ -38474,7 +38474,7 @@ var PartialEvaluator = (function PartialEvaluatorClosure() {
for (var j = 0, jj = items.length; j < jj; j++) { for (var j = 0, jj = items.length; j < jj; j++) {
if (typeof items[j] === 'string') { if (typeof items[j] === 'string') {
buildTextContentItem(items[j]); buildTextContentItem(items[j]);
} else { } else if (isNum(items[j])) {
ensureTextContentItem(); ensureTextContentItem();
// PDF Specification 5.3.2 states: // PDF Specification 5.3.2 states:

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.6.230", "version": "1.6.232",
"main": "build/pdf.js", "main": "build/pdf.js",
"description": "Generic build of Mozilla's PDF.js library.", "description": "Generic build of Mozilla's PDF.js library.",
"keywords": [ "keywords": [

Loading…
Cancel
Save