Browse Source

PDF.js version 1.6.315 - See mozilla/pdf.js@a139c757748ee14ca154d205a4b3f134098f2eba

master v1.6.315
Pdf Bot 8 years ago
parent
commit
120c8f71f7
  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. 7
      web/compatibility.js

2
bower.json

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

4
build/pdf.combined.js

@ -24,8 +24,8 @@
}(this, function (exports) { }(this, function (exports) {
// 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.313'; var pdfjsVersion = '1.6.315';
var pdfjsBuild = 'c23f124'; var pdfjsBuild = 'a139c75';
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null; var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null;
var pdfjsLibs = {}; var pdfjsLibs = {};
(function pdfjsWrapper() { (function pdfjsWrapper() {

4
build/pdf.js

@ -24,8 +24,8 @@
}(this, function (exports) { }(this, function (exports) {
// 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.313'; var pdfjsVersion = '1.6.315';
var pdfjsBuild = 'c23f124'; var pdfjsBuild = 'a139c75';
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null; var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null;
var pdfjsLibs = {}; var pdfjsLibs = {};
(function pdfjsWrapper() { (function pdfjsWrapper() {

4
build/pdf.worker.js vendored

@ -24,8 +24,8 @@
}(this, function (exports) { }(this, function (exports) {
// 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.313'; var pdfjsVersion = '1.6.315';
var pdfjsBuild = 'c23f124'; var pdfjsBuild = 'a139c75';
var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null; var pdfjsFilePath = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : null;
var pdfjsLibs = {}; var pdfjsLibs = {};
(function pdfjsWrapper() { (function pdfjsWrapper() {

2
package.json

@ -1,6 +1,6 @@
{ {
"name": "pdfjs-dist", "name": "pdfjs-dist",
"version": "1.6.313", "version": "1.6.315",
"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": [

7
web/compatibility.js

@ -457,16 +457,15 @@ if (typeof PDFJS === 'undefined') {
// https://github.com/mozilla/pdf.js/issues/3260 // https://github.com/mozilla/pdf.js/issues/3260
// Last tested with version 6.0.4. // Last tested with version 6.0.4.
// Support: Safari 6.0+ // Support: Safari 6.0+
var isSafari = Object.prototype.toString.call( var isSafari = /Safari\//.test(navigator.userAgent) &&
window.HTMLElement).indexOf('Constructor') > 0; !/(Chrome\/|Android\s)/.test(navigator.userAgent);
// Older versions of Android (pre 3.0) has issues with range requests, see: // Older versions of Android (pre 3.0) has issues with range requests, see:
// https://github.com/mozilla/pdf.js/issues/3381. // https://github.com/mozilla/pdf.js/issues/3381.
// Make sure that we only match webkit-based Android browsers, // Make sure that we only match webkit-based Android browsers,
// since Firefox/Fennec works as expected. // since Firefox/Fennec works as expected.
// Support: Android<3.0 // Support: Android<3.0
var regex = /Android\s[0-2][^\d]/; var isOldAndroid = /Android\s[0-2][^\d]/.test(navigator.userAgent);
var isOldAndroid = regex.test(navigator.userAgent);
// Range requests are broken in Chrome 39 and 40, https://crbug.com/442318 // Range requests are broken in Chrome 39 and 40, https://crbug.com/442318
var isChromeWithRangeBug = /Chrome\/(39|40)\./.test(navigator.userAgent); var isChromeWithRangeBug = /Chrome\/(39|40)\./.test(navigator.userAgent);

Loading…
Cancel
Save