Created
July 16, 2020 22:38
-
-
Save benvanderberg/05022a43bac6bed942f94a30034b8641 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| const allowTextSelection = false; | |
| previewFilePromise.then(adobeViewer => { | |
| adobeViewer.getAPIs().then(apis => { | |
| apis.enableTextSelection(allowTextSelection) | |
| .then(() => console.log("Success")) | |
| .catch(error => console.log(error)); | |
| }); | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment