Popper on scrolling container
In this example we have a relative div which contains a div with overflow: scroll
.
Inside it, there are our popper and reference elements.
{% highlight javascript %}
var popper = new Popper(referenceElement, onLeftPopper, {
placement: 'left',
});
{% endhighlight %}