Last active
January 14, 2021 16:17
-
-
Save bjoerntx/fb500b03085f1da01b9e5aad3201da8d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function initializeViewer() | |
{ | |
TXDocumentViewer.init( | |
{ containerID: "txViewer", viewerSettings: { | |
signatureSettings: { | |
"ownerName":"", | |
"signatureBoxName":"txsign", | |
"signerName":"", | |
"signerInitials":"", | |
"showSignatureBar":false, | |
"uniqueId":"", | |
"redirectUrlAfterSignature":"" | |
}, | |
userNames: [], | |
dock: 1, | |
documentData: "SGVsbG8gdGhlcmU=", | |
documentPath: "test.docx", | |
toolbarDocked: true, | |
isSelectionActivated: true, | |
showThumbnailPane: true, | |
resources: null, | |
basePath: "https://backend.textcontrol.com" | |
} | |
} | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment