Disable text selection when dragging

Hi there! Thanks for using PDF.js Express.

You can disable text selection using the disableFeature API

WebViewer({...}).then(instance => {
   instance.disableFeatures([instance.Feature.TextSelection])
})

Thanks,
Logan