1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-19 14:48:08 +02:00

[Editor] Populate the 'Add signature' menu with the saved signatures (bug 1947828)

This commit is contained in:
Calixte Denizet 2025-02-12 19:29:16 +01:00
parent d6f63d0e4b
commit 68451fe17e
15 changed files with 474 additions and 67 deletions

View file

@ -465,9 +465,12 @@ const PDFViewerApplication = {
AppOptions.get("enableSignatureEditor") && appConfig.addSignatureDialog
? new SignatureManager(
appConfig.addSignatureDialog,
appConfig.annotationEditorParams?.editorSignatureAddSignature ||
null,
this.overlayManager,
this.l10n,
externalServices.createSignatureStorage()
l10n,
externalServices.createSignatureStorage(),
eventBus
)
: null;