Browse Source

PDF.js version 1.5.256 - See mozilla/pdf.js@1c0433586e1d2e59c2d93f4b565a28055eaaeeb4

master v1.5.256
Pdf Bot 9 years ago
parent
commit
4444120ecf
  1. 2
      bower.json
  2. 4
      build/pdf.combined.js
  3. 4
      build/pdf.js
  4. 4
      build/pdf.worker.js
  5. 2
      package.json
  6. 5
      web/compatibility.js

2
bower.json

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

4
build/pdf.combined.js

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {})); @@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfCombined = {}));
// Use strict in our context only - users might not want it
'use strict';
var pdfjsVersion = '1.5.254';
var pdfjsBuild = 'b261203';
var pdfjsVersion = '1.5.256';
var pdfjsBuild = '1c04335';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?

4
build/pdf.js

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

4
build/pdf.worker.js vendored

@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfWorker = {})); @@ -28,8 +28,8 @@ factory((root.pdfjsDistBuildPdfWorker = {}));
// Use strict in our context only - users might not want it
'use strict';
var pdfjsVersion = '1.5.254';
var pdfjsBuild = 'b261203';
var pdfjsVersion = '1.5.256';
var pdfjsBuild = '1c04335';
var pdfjsFilePath =
typeof document !== 'undefined' && document.currentScript ?

2
package.json

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

5
web/compatibility.js

@ -14,7 +14,8 @@ @@ -14,7 +14,8 @@
*/
/* globals VBArray, PDFJS */
'use strict';
(function compatibilityWrapper() {
'use strict';
// Initializing PDFJS global object here, it case if we need to change/disable
// some PDF.js features, e.g. range requests
@ -591,3 +592,5 @@ if (typeof PDFJS === 'undefined') { @@ -591,3 +592,5 @@ if (typeof PDFJS === 'undefined') {
configurable: true
});
})();
}).call((typeof window === 'undefined') ? this : window);

Loading…
Cancel
Save