Skip to content

Instantly share code, notes, and snippets.

@benvanderberg
Created July 16, 2020 22:38
Show Gist options
  • Select an option

  • Save benvanderberg/05022a43bac6bed942f94a30034b8641 to your computer and use it in GitHub Desktop.

Select an option

Save benvanderberg/05022a43bac6bed942f94a30034b8641 to your computer and use it in GitHub Desktop.
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