Hi,
I’m using the webviewer on a page with the following options ;
await WebViewer(
{
path: environment.aprysePath,
css: environment.apryseCss,
disabledElements: [
'annotationPopup',
'contextMenuPopup',
'textPopup',
'inlineCommentPopup',
'toolStylePopup',
'linkAnnotationPopup',
'audioPlaybackPopup',
'calibratePopupButton',
'stylePopup',
'annotationStylePopup',
'snippingToolPopup',
'annotationClearSignatureButton',
'default-top-header',
'inlineCommentPopup',
'linkButton',
'linkAnnotationPopup',
'page-nav-floating-header',
'textStrikeoutToolButton',
'textHighlightToolButton',
'textSquigglyToolButton',
'textUnderlineToolButton',
'tools-header',
],
....
}
But since I’ve upgraded to verson 11.9.0, ‘default-top-header’ is not disabled any more, even if it is part to the disabledElements array.
Is there a better way to disable the default-top-header ??
Thank you in advanced