Frequently Asked Question
How to disable ctrl + c in viewer page ?
Last Updated 4 years ago
You can disable ctrl+c by adding a line to web/viewer.js file.
At the very last lines of that file you'll see
Add the following line just after that:
To disable text selection, you may follow this thread:
https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting-using-css
Thank You
At the very last lines of that file you'll see
case 85://Block Ctrl+u
Add the following line just after that:
case 67://Block Ctrl+c
To disable text selection, you may follow this thread:
https://stackoverflow.com/questions/826782/how-to-disable-text-selection-highlighting-using-css
Thank You