Accusoft will be performing a system upgrade from February 2-6, 2023. As a result, certain external services will be temporarily unavailable during that time.
For more detailed information, Click Here.
How can I remove the scroll bar/disable scrolling in PrizmDoc Viewer?
A quick way to do this would be to have something like the code below. Make sure to do this after this DOM element has loaded, so after the viewer is ready.
$('.pccPageListContainerWrapper').css('overflow', 'hidden');
The following will both remove the scroll bar, and disable scrolling:
$('.pccPageListContainerWrapper').css('overflow', 'unset');