mirror of
				https://github.com/janeczku/calibre-web
				synced 2025-10-31 15:23:02 +00:00 
			
		
		
		
	Fix for #897
This commit is contained in:
		| @@ -177,7 +177,7 @@ def check_send_to_kindle(entry): | ||||
| # Check if a reader is existing for any of the book formats, if not, return empty list, otherwise return | ||||
| # list with supported formats | ||||
| def check_read_formats(entry): | ||||
|     EXTENSIONS_READER = {'TXT', 'PDF', 'EPUB', 'ZIP', 'CBZ', 'TAR', 'CBT', 'RAR', 'CBR'} | ||||
|     EXTENSIONS_READER = {'TXT', 'PDF', 'EPUB', 'CBZ', 'CBT', 'CBR'} | ||||
|     bookformats = list() | ||||
|     if len(entry.data): | ||||
|         for ele in iter(entry.data): | ||||
|   | ||||
| @@ -34,20 +34,18 @@ See https://github.com/adobe-type-tools/cmap-resources | ||||
|     <script src="{{ url_for('static', filename='js/libs/compatibility.js') }}"></script> | ||||
|  | ||||
|     <!-- This snippet is used in production (included from viewer.html) --> | ||||
|     <link rel="resource" type="application/l10n" href="{{ url_for('static', filename='locale/locale.properties') }}"> | ||||
|     <script src="{{ url_for('static', filename='js/libs/pdf.js') }}"></script> | ||||
|  | ||||
|     <script type="text/javascript"> | ||||
|  | ||||
|     window.addEventListener('load', function() { | ||||
|         PDFViewerApplicationOptions.set('sidebarViewOnLoad', 0); | ||||
|         PDFViewerApplicationOptions.set('imageResourcesPath', "{{ url_for('static', filename='css/images/') }}"); | ||||
|         PDFViewerApplicationOptions.set('workerSrc', "{{ url_for('static', filename='js/libs/pdf.worker.js') }}"); | ||||
|         PDFViewerApplicationOptions.set('sidebarViewOnLoad', 0); | ||||
|         // PDFViewerApplication.open("{{ url_for('serve_book', book_id=pdffile, book_format='pdf') }}"); | ||||
|         PDFViewerApplicationOptions.set('defaultUrl', "{{ url_for('serve_book', book_id=pdffile, book_format='pdf') }}"); | ||||
|         PDFViewerApplication.open("{{ url_for('serve_book', book_id=pdffile, book_format='pdf') }}"); | ||||
|     }); | ||||
|     </script> | ||||
|  | ||||
|     <link rel="resource" type="application/l10n" href="{{ url_for('static', filename='locale/locale.properties') }}"> | ||||
|     <script src="{{ url_for('static', filename='js/libs/viewer.js') }}"></script> | ||||
|  | ||||
|   </head> | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Ozzieisaacs
					Ozzieisaacs