Browse Source

PDF.js version 1.0.277

master v1.0.277
Yury Delendik 10 years ago
parent
commit
8d890c07e8
  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. 4
      web/compatibility.js

2
bower.json

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

4
build/pdf.combined.js

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.0.274';
PDFJS.build = 'ff0672e';
PDFJS.version = '1.0.277';
PDFJS.build = '250d394';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

4
build/pdf.js

@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') { @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.0.274';
PDFJS.build = 'ff0672e';
PDFJS.version = '1.0.277';
PDFJS.build = '250d394';
(function pdfjsWrapper() {
// 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') { @@ -21,8 +21,8 @@ if (typeof PDFJS === 'undefined') {
(typeof window !== 'undefined' ? window : this).PDFJS = {};
}
PDFJS.version = '1.0.274';
PDFJS.build = 'ff0672e';
PDFJS.version = '1.0.277';
PDFJS.build = '250d394';
(function pdfjsWrapper() {
// Use strict in our context only - users might not want it

2
package.json

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

4
web/compatibility.js

@ -496,7 +496,9 @@ if (typeof PDFJS === 'undefined') { @@ -496,7 +496,9 @@ if (typeof PDFJS === 'undefined') {
if ('requestAnimationFrame' in window) {
return;
}
window.requestAnimationFrame = window.webkitRequestAnimationFrame ||
window.requestAnimationFrame =
window.mozRequestAnimationFrame ||
window.webkitRequestAnimationFrame ||
(function fakeRequestAnimationFrame(callback) {
window.setTimeout(callback, 20);
});

Loading…
Cancel
Save