How to remove the Page Orientation header from the menu?

Which product are you using?
PDF.js Express Viewer

PDF.js Express Version
UI Version: 8.7.0
Core Version: 8.7.5

Detailed description of issue
I’ve disabled a number of elements in the menu including the page orientation options.

Expected behaviour
I expected the “Page Orientation” title and one of the dividers would also be removed when the rotateCounterClockwiseButton and rotateClockwiseButton options were removed.

Does your issue happen with every document, or just one?
It happens with every document

Code snippet

WebViewer({
  licenseKey: PdfJsExpressLicenceKey,
  path: path,
  config: "pdfjsExpressConfig.js",
  disabledElements: [
    'selectToolButton',
    'menuButton',
    'rotateCounterClockwiseButton',
    'rotateClockwiseButton'
  ]
}, viewer);

Hi there,

The divider and the rotation button each has their own data-element. You will need to add them to the array to remove them, i.e.

([
    'viewControlsDivider1',
    'viewControlsDivider2',
    'rotateHeader',
    'selectToolButton',
    'menuButton',
    'rotateCounterClockwiseButton',
    'rotateClockwiseButton'
  ])

best regards,
Kevin

1 Like