1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #1887 from jellyfin/pdf-reader

Add basic pdf reader
This commit is contained in:
dkanada 2020-10-31 01:43:08 +09:00 committed by GitHub
commit 523201bb18
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
11 changed files with 392 additions and 58 deletions

View file

@ -95,6 +95,11 @@ _define('epubjs', function () {
return epubjs;
});
const pdfjs = require('pdfjs-dist/build/pdf');
_define('pdfjs', function () {
return pdfjs;
});
// page.js
const page = require('page');
_define('page', function() {