0

Is it possible to configure orientation on a popover through popper.js?

Like, showing it aligned right, but going towards left?

Thank you very much

Marco Alves
  • 2,776
  • 3
  • 23
  • 33

1 Answers1

0

This problem occurs often when your parent container is not wide enough to receive popover content.

At the moment, I'm dealing with it by disabling preventOverflow like this :

new Popper(ref, pop, {
  modifiers: {
    preventOverflow: { enabled: false }
  }
})
Paul
  • 1,410
  • 1
  • 14
  • 30