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

Remove embeddedFontsUsed from API.

This commit is contained in:
Brendan Dahl 2014-02-27 14:06:03 -08:00
parent cab5d7b96f
commit ce9e9e6ff7
3 changed files with 2 additions and 19 deletions

View file

@ -213,13 +213,6 @@ var PDFDocumentProxy = (function PDFDocumentProxyClosure() {
get fingerprint() {
return this.pdfInfo.fingerprint;
},
/**
* @return {boolean} true if embedded document fonts are in use. Will be
* set during rendering of the pages.
*/
get embeddedFontsUsed() {
return this.transport.embeddedFontsUsed;
},
/**
* @param {number} pageNumber The page number to get. The first page is 1.
* @return {Promise} A promise that is resolved with a {@link PDFPageProxy}
@ -578,7 +571,6 @@ var WorkerTransport = (function WorkerTransportClosure() {
this.pageCache = [];
this.pagePromises = [];
this.embeddedFontsUsed = false;
this.downloadInfoPromise = new PDFJS.LegacyPromise();
this.passwordCallback = null;