Browse Source

PDF.js version 1.7.254 - See mozilla/pdf.js@ec26a7e565e378554ed791124e720dfa55e2d07c

master v1.7.254
pdfjsbot 8 years ago
parent
commit
b6dbde0b3f
  1. 2
      bower.json
  2. 8
      build/pdf.combined.js
  3. 8
      build/pdf.js
  4. 4
      build/pdf.min.js
  5. 4
      build/pdf.worker.js
  6. 2
      package.json

2
bower.json

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

8
build/pdf.combined.js

@ -23,8 +23,8 @@ @@ -23,8 +23,8 @@
}
}(this, function (exports) {
'use strict';
var pdfjsVersion = '1.7.252';
var pdfjsBuild = '3e5c6e42';
var pdfjsVersion = '1.7.254';
var pdfjsBuild = 'ec26a7e5';
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null;
var pdfjsLibs = {};
(function pdfjsWrapper() {
@ -23404,7 +23404,9 @@ @@ -23404,7 +23404,9 @@
clear: function fontLoaderClear() {
var styleElement = this.styleElement;
if (styleElement) {
styleElement.parentNode.removeChild(styleElement);
if (styleElement.parentNode) {
styleElement.parentNode.removeChild(styleElement);
}
styleElement = this.styleElement = null;
}
this.nativeFontFaces.forEach(function (nativeFontFace) {

8
build/pdf.js

@ -23,8 +23,8 @@ @@ -23,8 +23,8 @@
}
}(this, function (exports) {
'use strict';
var pdfjsVersion = '1.7.252';
var pdfjsBuild = '3e5c6e42';
var pdfjsVersion = '1.7.254';
var pdfjsBuild = 'ec26a7e5';
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null;
var pdfjsLibs = {};
(function pdfjsWrapper() {
@ -2475,7 +2475,9 @@ @@ -2475,7 +2475,9 @@
clear: function fontLoaderClear() {
var styleElement = this.styleElement;
if (styleElement) {
styleElement.parentNode.removeChild(styleElement);
if (styleElement.parentNode) {
styleElement.parentNode.removeChild(styleElement);
}
styleElement = this.styleElement = null;
}
this.nativeFontFaces.forEach(function (nativeFontFace) {

4
build/pdf.min.js vendored

File diff suppressed because one or more lines are too long

4
build/pdf.worker.js vendored

@ -23,8 +23,8 @@ @@ -23,8 +23,8 @@
}
}(this, function (exports) {
'use strict';
var pdfjsVersion = '1.7.252';
var pdfjsBuild = '3e5c6e42';
var pdfjsVersion = '1.7.254';
var pdfjsBuild = 'ec26a7e5';
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null;
var pdfjsLibs = {};
(function pdfjsWrapper() {

2
package.json

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

Loading…
Cancel
Save