Browse Source

PDF.js version 1.0.441

master v1.0.441
Yury Delendik 11 years ago
parent
commit
b4910acc09
  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. 42
      web/compatibility.js

2
bower.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.0.439", "version": "1.0.441",
"keywords": [ "keywords": [
"Mozilla", "Mozilla",
"pdf", "pdf",

4
build/pdf.combined.js

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.0.439'; PDFJS.version = '1.0.441';
PDFJS.build = '2e98f90'; PDFJS.build = '0ac8380';
(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

4
build/pdf.js

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.0.439'; PDFJS.version = '1.0.441';
PDFJS.build = '2e98f90'; PDFJS.build = '0ac8380';
(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

4
build/pdf.worker.js vendored

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {}; (typeof window !== 'undefined' ? window : this).PDFJS = {};
} }
PDFJS.version = '1.0.439'; PDFJS.version = '1.0.441';
PDFJS.build = '2e98f90'; PDFJS.build = '0ac8380';
(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

2
package.json

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

42
web/compatibility.js

@ -481,7 +481,7 @@ if (typeof PDFJS === 'undefined') {
} }
})(); })();
// Support: IE<11, Chrome<21 // Support: IE<11, Chrome<21, Android<4.4
(function checkSetPresenceInImageData() { (function checkSetPresenceInImageData() {
// IE < 11 will use window.CanvasPixelArray which lacks set function. // IE < 11 will use window.CanvasPixelArray which lacks set function.
if (window.CanvasPixelArray) { if (window.CanvasPixelArray) {
@ -493,24 +493,38 @@ if (typeof PDFJS === 'undefined') {
}; };
} }
} else { } else {
// Chrome < 21 uses an inaccessible CanvasPixelArray prototype. // Old Chrome and Android use an inaccessible CanvasPixelArray prototype.
// Because we cannot feature detect it, we rely on user agent. // Because we cannot feature detect it, we rely on user agent parsing.
var polyfill = false;
if (navigator.userAgent.indexOf('Chrom') >= 0) { if (navigator.userAgent.indexOf('Chrom') >= 0) {
var versionMatch = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./); var versionMatch = navigator.userAgent.match(/Chrom(e|ium)\/([0-9]+)\./);
if (versionMatch && parseInt(versionMatch[2]) < 21) { if (versionMatch && parseInt(versionMatch[2]) < 21) {
var contextPrototype = window.CanvasRenderingContext2D.prototype; // Chrome < 21 lacks the set function.
contextPrototype._createImageData = contextPrototype.createImageData; polyfill = true;
contextPrototype.createImageData = function(w, h) { }
var imageData = this._createImageData(w, h); } else if (navigator.userAgent.indexOf('Android') >= 0) {
imageData.data.set = function(arr) { // Android < 4.4 lacks the set function.
for (var i = 0, ii = this.length; i < ii; i++) { // Android >= 4.4 will contain Chrome in the user agent,
this[i] = arr[i]; // thus pass the Chrome check above and not reach this block.
} var isOldAndroid = /Android\s[0-4][^\d]/g.test(navigator.userAgent);
}; if (isOldAndroid) {
return imageData; polyfill = true;
};
} }
} }
if (polyfill) {
var contextPrototype = window.CanvasRenderingContext2D.prototype;
contextPrototype._createImageData = contextPrototype.createImageData;
contextPrototype.createImageData = function(w, h) {
var imageData = this._createImageData(w, h);
imageData.data.set = function(arr) {
for (var i = 0, ii = this.length; i < ii; i++) {
this[i] = arr[i];
}
};
return imageData;
};
}
} }
})(); })();

Loading…
Cancel
Save