1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-28 23:28:16 +02:00

Adds stub PdfJs.jsm for FF15

This commit is contained in:
Yury Delendik 2012-08-19 13:07:31 -05:00
parent d38781d72e
commit 1bb7a7ed1c
2 changed files with 9 additions and 0 deletions

View file

@ -0,0 +1,7 @@
// Don't remove this file. FF15+ expects PdfJs module to be present at resource://pdf.js/PdfJs.jsm
// See https://mxr.mozilla.org/mozilla-central/source/browser/components/nsBrowserGlue.js
var EXPORTED_SYMBOLS = ["PdfJs"];
let PdfJs = {
init: function PdfJs_init() {}
};